diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-08 23:27:23 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-08 23:27:23 (GMT) |
commit | f9983415722d1beafc1845c17be2d851637b5397 (patch) | |
tree | 09932b93bf4b3c1f7edf5686a80ea95edca654b1 /Misc | |
parent | 0b074575b737ee31a46c05718110272c2785e47a (diff) | |
download | cpython-f9983415722d1beafc1845c17be2d851637b5397.zip cpython-f9983415722d1beafc1845c17be2d851637b5397.tar.gz cpython-f9983415722d1beafc1845c17be2d851637b5397.tar.bz2 |
Merged revisions 75669-75671 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75669 | tarek.ziade | 2009-10-24 17:10:37 +0200 (Sat, 24 Oct 2009) | 1 line
Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode
........
r75670 | tarek.ziade | 2009-10-24 17:19:03 +0200 (Sat, 24 Oct 2009) | 1 line
fixed finally state in distutils.test_util
........
r75671 | tarek.ziade | 2009-10-24 17:51:30 +0200 (Sat, 24 Oct 2009) | 1 line
fixed warning and error message
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ Core and Builtins Library ------- +- Issue #7071: byte-compilation in Distutils is now done with respect to + sys.dont_write_bytecode. + - Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles renaming of `cPickle` to `pickle`. The warning was annoying since there's no alternative to cPickle if you care about performance. Patch by Florent |