diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-03 18:03:53 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-03 18:03:53 (GMT) |
commit | 7e160ce356036bccda2608d9ee10bfe276dfa97a (patch) | |
tree | 8c5ff466786f788afa0d8400c8d8c57211e85cdb /Doc/whatsnew | |
parent | 6c94d10a193ffdaad9d3b7c2376d9f4de776575f (diff) | |
download | cpython-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 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 21e887f..1550eef 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -646,6 +646,16 @@ Porting to Python 3.6 This section lists previously described changes and other bugfixes that may require changes to your code. +Changes in 'python' Command Behavior +------------------------------------ + +* 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``. + (Contributed by Serhiy Storchaka in :issue:`23034`.) + + Changes in the Python API ------------------------- |