Kaydet (Commit) b1062fc9 authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst 599174f7
...@@ -693,7 +693,7 @@ class Unpickler: ...@@ -693,7 +693,7 @@ class Unpickler:
dispatch[POP_MARK] = load_pop_mark dispatch[POP_MARK] = load_pop_mark
def load_dup(self): def load_dup(self):
self.append(stack[-1]) self.append(self.stack[-1])
dispatch[DUP] = load_dup dispatch[DUP] = load_dup
def load_get(self): def load_get(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment