Nuke hard tabs.
This commit is contained in:
parent
9d0d640b20
commit
27dd1ffaf0
14
pep-0280.txt
14
pep-0280.txt
|
@ -196,13 +196,13 @@ Description
|
|||
With these two additional ideas added, here's Python pseudo-code
|
||||
for LOAD_GLOBAL_CELL:
|
||||
|
||||
def LOAD_GLOBAL_CELL(self, i):
|
||||
# self is the frame
|
||||
c = self.func_cells[i]
|
||||
obj = c.objptr
|
||||
if obj is not NULL:
|
||||
return obj # Existing global
|
||||
return c.cellptr.objptr # Built-in or NULL
|
||||
def LOAD_GLOBAL_CELL(self, i):
|
||||
# self is the frame
|
||||
c = self.func_cells[i]
|
||||
obj = c.objptr
|
||||
if obj is not NULL:
|
||||
return obj # Existing global
|
||||
return c.cellptr.objptr # Built-in or NULL
|
||||
|
||||
XXX Incorporate Tim's most recent posts. (Tim, can you do this?)
|
||||
|
||||
|
|
Loading…
Reference in New Issue