Nuke hard tabs.

This commit is contained in:
Tim Peters 2002-02-11 05:10:10 +00:00
parent 9d0d640b20
commit 27dd1ffaf0
1 changed files with 7 additions and 7 deletions

View File

@ -196,13 +196,13 @@ Description
With these two additional ideas added, here's Python pseudo-code With these two additional ideas added, here's Python pseudo-code
for LOAD_GLOBAL_CELL: for LOAD_GLOBAL_CELL:
def LOAD_GLOBAL_CELL(self, i): def LOAD_GLOBAL_CELL(self, i):
# self is the frame # self is the frame
c = self.func_cells[i] c = self.func_cells[i]
obj = c.objptr obj = c.objptr
if obj is not NULL: if obj is not NULL:
return obj # Existing global return obj # Existing global
return c.cellptr.objptr # Built-in or NULL return c.cellptr.objptr # Built-in or NULL
XXX Incorporate Tim's most recent posts. (Tim, can you do this?) XXX Incorporate Tim's most recent posts. (Tim, can you do this?)