This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients alex, berker.peksag, brett.cannon, ezio.melotti, matrixise, vstinner
Date 2015-10-01.12:36:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443703009.43.0.509479061403.issue25256@psf.upfronthosting.co.za>
In-reply-to
Content
LGTM

> Alternative: Add a new sys.implementation.debug_build flag.

According to the sys.implementation documentation and PEP 421, we can only add a private attribute without writing a PEP. But I find sys.implementation._debug_build too long and ``from sys import implementation; implementation._debug_build``(or ``from sys import implementation as i; i._debug_build``) is also not easy to write. So I'm +1 to sys.debug_build.

I left two trivial review comments on Rietveld.
History
Date User Action Args
2015-10-01 12:36:49berker.peksagsetrecipients: + berker.peksag, brett.cannon, vstinner, ezio.melotti, alex, matrixise
2015-10-01 12:36:49berker.peksagsetmessageid: <1443703009.43.0.509479061403.issue25256@psf.upfronthosting.co.za>
2015-10-01 12:36:49berker.peksaglinkissue25256 messages
2015-10-01 12:36:49berker.peksagcreate