From: Antoine Pitrou Date: Thu, 28 Jun 2012 23:06:51 +0000 (+0200) Subject: Issue #10571: Fix the "--sign" option of distutils' upload command. X-Git-Tag: v3.3.0b2~372 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c92448beba60b022624b03068aea53800d0fd923;p=thirdparty%2FPython%2Fcpython.git Issue #10571: Fix the "--sign" option of distutils' upload command. Patch by Jakub Wilk. --- c92448beba60b022624b03068aea53800d0fd923 diff --cc Misc/ACKS index 6d8681e02e81,efa7339e2b3e..e2a4f9bed9b4 --- a/Misc/ACKS +++ b/Misc/ACKS @@@ -1116,7 -1009,7 +1116,8 @@@ Felix Wieman Gerry Wiener Frank Wierzbicki Bryce "Zooko" Wilcox-O'Hearn + Jakub Wilk +Gerald S. Williams Jason Williams John Williams Sue Williams diff --cc Misc/NEWS index 4dcbfc2efca9,242b8f76d1a5..2d8d16865117 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,44 -2,10 +2,47 @@@ Python News +++++++++++ -What's New in Python 3.2.4 -========================== +What's New in Python 3.3.0 Beta 2? +================================== + +*Release date: xx-xxx-2012* + +Core and Builtins +----------------- + + +Library +------- + ++- Issue #10571: Fix the "--sign" option of distutils' upload command. ++ Patch by Jakub Wilk. ++ +- Issue #9559: If messages were only added, a new file is no longer + created and renamed over the old file when flush() is called on an + mbox, MMDF or Babyl mailbox. -*Release date: XX-XX-XXXX* +- Issue 10924: Fixed mksalt() to use a RNG that is suitable for cryptographic + purpose. + +Extension Modules +----------------- + +- Issue #15194: Update libffi to the 3.0.11 release. + +Tools/Demos +----------- + +- Issue #12605: The gdb hooks for debugging CPython (within Tools/gdb) have + been enhanced to show information on more C frames relevant to CPython within + the "py-bt" and "py-bt-full" commands: + * C frames that are waiting on the GIL + * C frames that are garbage-collecting + * C frames that are due to the invocation of a PyCFunction + +What's New in Python 3.3.0 Beta 1? +================================== + +*Release date: 27-Jun-2012* Core and Builtins -----------------