diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-28 19:40:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-28 19:40:15 (GMT) |
commit | 0938d98bcc684b01e92112245b5868e7b920a5a2 (patch) | |
tree | dc14b536462428ba58231f4588e759491a4e78ba /Python/compile.c | |
parent | 2ec8f9bffc952a2ebc17b91787298be1180e517f (diff) | |
parent | 264be6f48f107d831ccecdf68a1b82c7b61f3a17 (diff) | |
download | cpython-0938d98bcc684b01e92112245b5868e7b920a5a2.zip cpython-0938d98bcc684b01e92112245b5868e7b920a5a2.tar.gz cpython-0938d98bcc684b01e92112245b5868e7b920a5a2.tar.bz2 |
merge 3.5
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index 5905910..29b88ff 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -903,8 +903,6 @@ PyCompile_OpcodeStackEffect(int opcode, int oparg) return -1; case STORE_SUBSCR: return -3; - case STORE_MAP: - return -2; case DELETE_SUBSCR: return -2; |