diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-14 06:05:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-14 06:05:13 (GMT) |
commit | 4ab6abfca4d6e444cca04821b24701cde6993f4e (patch) | |
tree | 3fa4eb3ddab7c00ec87cf3a369a03b5e5fcce518 /Misc | |
parent | 821a9d146bc04a1bc1a9807962990a1f59d692b8 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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``. |