diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-23 17:21:55 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-23 17:21:55 (GMT) |
commit | 4d397008cdbcc653ff69fc9a39d29e2aaae07512 (patch) | |
tree | 3d00f2aef5e19aebd9abd7a88a5cb854ee325305 /Misc/NEWS | |
parent | 6c6b3f770d0b54eeb3e42b38e1fe5d893c38dd6e (diff) | |
parent | 09fcb72048be60435ae70ec2c3e23e2325edb421 (diff) | |
download | cpython-4d397008cdbcc653ff69fc9a39d29e2aaae07512.zip cpython-4d397008cdbcc653ff69fc9a39d29e2aaae07512.tar.gz cpython-4d397008cdbcc653ff69fc9a39d29e2aaae07512.tar.bz2 |
Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -52,6 +52,12 @@ Library - Issue #17087: Improved the repr for regular expression match objects. +Build +----- + +- Issue #19356: Avoid using a C variabled named "_self", it's a reserved + word in some C compilers. + What's New in Python 3.4.0 Alpha 4? =================================== @@ -655,7 +661,6 @@ Tools/Demos - Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write their version strings to stdout, and not to sderr. - What's New in Python 3.4.0 Alpha 1? =================================== |