summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-08-17 10:18:16 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-08-17 10:18:16 (GMT)
commit09c8123e6f2d01444b03e7971f3e3dec37474490 (patch)
treeef40c7e94ccba25249313ecd46de2b131e99fd8a /Misc
parent77203adb7e3c50775b768a846ebc03514e69be77 (diff)
downloadcpython-09c8123e6f2d01444b03e7971f3e3dec37474490.zip
cpython-09c8123e6f2d01444b03e7971f3e3dec37474490.tar.gz
cpython-09c8123e6f2d01444b03e7971f3e3dec37474490.tar.bz2
Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own
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 cff5864..a2d41a0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,9 @@ Extensions
Library
-------
+- Address XXX comment in dis.py by having inspect.py prefer to reuse the
+ dis.py compiler flag values over defining its own
+
- 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.