mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
Correct dumb typo found by kjpylint (stack should be self.stack).
This commit is contained in:
parent
599174f74d
commit
b1062fc9d2
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue