summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-04-25 19:04:06 (GMT)
committerGitHub <noreply@github.com>2018-04-25 19:04:06 (GMT)
commit57faf348872d1d0af1808c82f535cf220d64b028 (patch)
tree9c6d67a4920409a1701c14c2997e260f2c962c13 /Misc
parente9d9494d6b2a5e0c2d48d22c7f0d5e95504b4f7e (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-04-22-20-13-21.bpo-33334.19UMOC.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-04-22-20-13-21.bpo-33334.19UMOC.rst b/Misc/NEWS.d/next/Library/2018-04-22-20-13-21.bpo-33334.19UMOC.rst
new file mode 100644
index 0000000..1df2740
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-04-22-20-13-21.bpo-33334.19UMOC.rst
@@ -0,0 +1,2 @@
+:func:`dis.stack_effect` now supports all defined opcodes including NOP and
+EXTENDED_ARG.