From 27dd1ffaf0392e22e68b897ec3a975a87adff704 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 11 Feb 2002 05:10:10 +0000 Subject: [PATCH] Nuke hard tabs. --- pep-0280.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pep-0280.txt b/pep-0280.txt index 5b3484873..2e759a577 100644 --- a/pep-0280.txt +++ b/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?)