summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-28 14:40:08 -0500
committerBenjamin Peterson <benjamin@python.org>2015-05-28 14:40:08 -0500
commit2a8855656d526cce898303bb03c66274f06e7b51 (patch)
treeefb28c6ff3721de8786b4309117cc6883889ed74 /Python/compile.c
parentffe5c8f2c45e238c70ac87fecf23aeef676a65f6 (diff)
downloadcpython-2a8855656d526cce898303bb03c66274f06e7b51.tar.gz
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 5905910574..29b88ff0e3 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;