summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-11 11:09:39 (GMT)
committerGitHub <noreply@github.com>2017-06-11 11:09:39 (GMT)
commit1efbf92e90ed2edf3f5bb5323340b26f318ff61e (patch)
treeb3dbf9eede1f4c0094c8c8dcf0a02523406b3130 /Misc/NEWS
parentfdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49 (diff)
downloadcpython-1efbf92e90ed2edf3f5bb5323340b26f318ff61e.zip
cpython-1efbf92e90ed2edf3f5bb5323340b26f318ff61e.tar.gz
cpython-1efbf92e90ed2edf3f5bb5323340b26f318ff61e.tar.bz2
bpo-11822: Improve disassembly to show embedded code objects. (#1844)
The depth argument limits recursion.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8cbd463..b436524 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -355,6 +355,9 @@ Extension Modules
Library
-------
+- bpo-11822: The dis.dis() function now is able to disassemble nested
+ code objects.
+
- bpo-30624: selectors does not take KeyboardInterrupt and SystemExit into
account, leaving a fd in a bad state in case of error. Patch by Giampaolo
Rodola'.