[2.7] bpo-31733, bpo-31692: Document 2 new env vars in What's New in Python 2.7#4019
[2.7] bpo-31733, bpo-31692: Document 2 new env vars in What's New in Python 2.7#4019vstinner merged 2 commits intopython:2.7from vstinner:debug_news27
Conversation
Doc/whatsnew/2.7.rst
Outdated
| (Contributed by Victor Stinner; :issue:`31733`.) | ||
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment |
There was a problem hiding this comment.
Nit: "no more dumped" isn't grammatically correct.
Perhaps change:
allocations counts are no more dumped by default anymore
to:
allocation counts are no longer dumped by default
Cheers
There was a problem hiding this comment.
I'm sorry. It's not the first time that someone reports me this grammar mistake, and I continue to make it... Thank you for your review. Since english is not my first language, I appreciate such feedback ;-)
There was a problem hiding this comment.
No need to apologize. Thanks for all you do!
Doc/whatsnew/2.7.rst
Outdated
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment | ||
| variable now must also be set. Moreover, allocations counts are now dumped into |
Doc/whatsnew/2.7.rst
Outdated
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment | ||
| variable now must also be set. Moreover, allocations counts are now dumped into |
There was a problem hiding this comment.
s/allocations counts/allocation counts
vstinner
left a comment
There was a problem hiding this comment.
Thank you @dianaclarke for your review. Would you mind to review it again?
Doc/whatsnew/2.7.rst
Outdated
| (Contributed by Victor Stinner; :issue:`31733`.) | ||
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment |
There was a problem hiding this comment.
I'm sorry. It's not the first time that someone reports me this grammar mistake, and I continue to make it... Thank you for your review. Since english is not my first language, I appreciate such feedback ;-)
Doc/whatsnew/2.7.rst
Outdated
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment | ||
| variable now must also be set. Moreover, allocations counts are now dumped into |
Doc/whatsnew/2.7.rst
Outdated
|
|
||
| When Python is compiled with ``COUNT_ALLOC`` defined, allocations counts are no | ||
| more dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` environment | ||
| variable now must also be set. Moreover, allocations counts are now dumped into |
Document the new PYTHONSHOWREFCOUNT and
PYTHONSHOWALLOCCOUNT environment variables.
https://bugs.python.org/issue31733