From: Éric Araujo Date: Sun, 5 Feb 2012 12:41:47 +0000 (+0100) Subject: Branch merge X-Git-Tag: v3.3.0a1~241^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd2a6033ac0bafd69a7cba2d132e092127acc895;p=thirdparty%2FPython%2Fcpython.git Branch merge --- cd2a6033ac0bafd69a7cba2d132e092127acc895 diff --cc Misc/NEWS index d3a3b9e18d02,271c5b7423ba..70c5f10071a0 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -113,46 -97,8 +113,48 @@@ Core and Builtin Library ------- + - Issue #2945: Make the distutils upload command aware of bdist_rpm products. + +- Issue #13933: IDLE auto-complete did not work with some imported + module, like hashlib. (Patch by Roger Serwy) + +- Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. + +- Issue #13676: Handle strings with embedded zeros correctly in sqlite3. + +- Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell. + Original patches by Marco Scataglini and Roger Serwy. + +- Issue #13848: open() and the FileIO constructor now check for NUL + characters in the file name. Patch by Hynek Schlawack. + +- Issue #13806: The size check in audioop decompression functions was too + strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. + +- Issue #13812: When a multiprocessing Process child raises an exception, + flush stderr after printing the exception traceback. + +- Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC + IV attack countermeasure. + +- Issue #13772: In os.symlink() under Windows, do not try to guess the link + target's type (file or directory). The detection was buggy and made the + call non-atomic (therefore prone to race conditions). + +- Issue #6631: Disallow relative file paths in urllib urlopen methods. + +- Issue #13722: Avoid silencing ImportErrors when initializing the codecs + registry. + +- Issue #13781: Fix GzipFile bug that caused an exception to be raised when + opening for writing using a fileobj returned by os.fdopen(). + +- Issue #13803: Under Solaris, distutils doesn't include bitness + in the directory name. + +- Issue #13589: Fix some serialization primitives in the aifc module. + Patch by Oleg Plakhotnyuk. + - Issue #13642: Unquote before b64encoding user:password during Basic Authentication. Patch contributed by Joonas Kuorilehto.