diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-04-25 19:04:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-25 19:04:06 (GMT) |
commit | 57faf348872d1d0af1808c82f535cf220d64b028 (patch) | |
tree | 9c6d67a4920409a1701c14c2997e260f2c962c13 /Python/compile.c | |
parent | e9d9494d6b2a5e0c2d48d22c7f0d5e95504b4f7e (diff) | |
download | cpython-57faf348872d1d0af1808c82f535cf220d64b028.zip cpython-57faf348872d1d0af1808c82f535cf220d64b028.tar.gz cpython-57faf348872d1d0af1808c82f535cf220d64b028.tar.bz2 |
bpo-33334: Support NOP and EXTENDED_ARG in dis.stack_effect(). (#6566)
Added tests to ensure that all defined opcodes are supported.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c index 5f5e653..cc0988f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -859,6 +859,10 @@ static int stack_effect(int opcode, int oparg, int jump) { switch (opcode) { + case NOP: + case EXTENDED_ARG: + return 0; + /* Stack manipulation */ case POP_TOP: return -1; |