Correct dumb typo found by kjpylint (stack should be self.stack).

This commit is contained in:
Guido van Rossum 1998-03-31 17:00:46 +00:00
parent 599174f74d
commit b1062fc9d2
1 changed files with 1 additions and 1 deletions

View File

@ -693,7 +693,7 @@ class Unpickler:
dispatch[POP_MARK] = load_pop_mark
def load_dup(self):
self.append(stack[-1])
self.append(self.stack[-1])
dispatch[DUP] = load_dup
def load_get(self):