summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-14 06:05:13 (GMT)
committerGitHub <noreply@github.com>2017-05-14 06:05:13 (GMT)
commit4ab6abfca4d6e444cca04821b24701cde6993f4e (patch)
tree3fa4eb3ddab7c00ec87cf3a369a03b5e5fcce518 /Misc
parent821a9d146bc04a1bc1a9807962990a1f59d692b8 (diff)
downloadcpython-4ab6abfca4d6e444cca04821b24701cde6993f4e.zip
cpython-4ab6abfca4d6e444cca04821b24701cde6993f4e.tar.gz
cpython-4ab6abfca4d6e444cca04821b24701cde6993f4e.tar.bz2
bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491)
`re.compile(..., re.DEBUG)` now displays the compiled bytecode in human readable form.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e6b4ced..bf19b25 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -323,6 +323,9 @@ Extension Modules
Library
-------
+- bpo-30299: Compiling regular expression in debug mode on CPython now displays
+ the compiled bytecode in human readable form.
+
- bpo-30048: Fixed ``Task.cancel()`` can be ignored when the task is
running coroutine and the coroutine returned without any more ``await``.