summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-06-28 03:49:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-06-28 03:49:29 (GMT)
commit8477f7af13d080f15b39094a2fa37dcc6314925a (patch)
tree4fec24fd29fd11b6339489a046e81fec9a382dc5 /Misc/NEWS
parent0882e27e2aab932369b591d6a30a62bb1f88ad90 (diff)
downloadcpython-8477f7af13d080f15b39094a2fa37dcc6314925a.zip
cpython-8477f7af13d080f15b39094a2fa37dcc6314925a.tar.gz
cpython-8477f7af13d080f15b39094a2fa37dcc6314925a.tar.bz2
Issue #21863: cProfile now displays the module name of C extension functions, in addition to their own name.
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 f41ac62..d7bc2af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -103,6 +103,9 @@ Core and Builtins
Library
-------
+- Issue #21863: cProfile now displays the module name of C extension functions,
+ in addition to their own name.
+
- Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper
object is destroyed. The destructor now closes the file if needed. The
close() method can now be called twice: the second call does nothing.