summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-28 19:40:08 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-05-28 19:40:08 (GMT)
commit264be6f48f107d831ccecdf68a1b82c7b61f3a17 (patch)
treed80c956f969469749ce768f857fd7c680fde0259 /Python/compile.c
parentee85339cc69af6b29a37b85a5695fb9c12f0f0a3 (diff)
downloadcpython-264be6f48f107d831ccecdf68a1b82c7b61f3a17.zip
cpython-264be6f48f107d831ccecdf68a1b82c7b61f3a17.tar.gz
cpython-264be6f48f107d831ccecdf68a1b82c7b61f3a17.tar.bz2
remove STORE_MAP, since it's unused
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
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;