summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-07-03 18:03:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-07-03 18:03:53 (GMT)
commit7e160ce356036bccda2608d9ee10bfe276dfa97a (patch)
tree8c5ff466786f788afa0d8400c8d8c57211e85cdb /Misc
parent6c94d10a193ffdaad9d3b7c2376d9f4de776575f (diff)
downloadcpython-7e160ce356036bccda2608d9ee10bfe276dfa97a.zip
cpython-7e160ce356036bccda2608d9ee10bfe276dfa97a.tar.gz
cpython-7e160ce356036bccda2608d9ee10bfe276dfa97a.tar.bz2
Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,
SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled using the "-X showalloccount" option. It now outputs to stderr instead of stdout.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 014ac54..c9a78d0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.6.0 alpha 3
Core and Builtins
-----------------
+- Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,
+ SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can
+ be re-enabled using the "-X showalloccount" option. It now outputs to stderr
+ instead of stdout.
+
- Issue #27443: __length_hint__() of bytearray itearator no longer return
negative integer for resized bytearray.