summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-08-17 08:03:36 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-08-17 08:03:36 (GMT)
commiteae2da1da78bd13331c4a64ae02fb825eba6777e (patch)
tree59e88dddd02d09d74e99e5221844da740d977d06 /Misc/NEWS
parent9887683f7407b2d4ec0e0ff1ff9b9a26137d0724 (diff)
downloadcpython-eae2da1da78bd13331c4a64ae02fb825eba6777e.zip
cpython-eae2da1da78bd13331c4a64ae02fb825eba6777e.tar.gz
cpython-eae2da1da78bd13331c4a64ae02fb825eba6777e.tar.bz2
Issue 9147: Add dis.code_info()
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7ec59b3..cff5864 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,10 @@ Extensions
Library
-------
+- Issue #9147: Added dis.code_info() which is similar to show_code()
+ but returns formatted code information in a string rather than
+ displaying on screen.
+
- Issue #9567: functools.update_wrapper now adds a __wrapped__ attribute
pointing to the original callable