Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move MANIFEST parsing change to the right position. | Georg Brandl | 2012-03-17 | 1 | -3/+7 |
| | |||||
* | #11686: news entry. | R David Murray | 2012-03-17 | 1 | -0/+3 |
| | |||||
* | check to make sure the attribute is a string (#14334) | Benjamin Peterson | 2012-03-16 | 1 | -0/+3 |
| | |||||
* | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem | Senthil Kumaran | 2012-03-16 | 1 | -0/+2 |
| | |||||
* | closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. | Senthil Kumaran | 2012-03-15 | 1 | -0/+2 |
| | |||||
* | Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes | Gregory P. Smith | 2012-03-14 | 1 | -1/+14 |
|\ | | | | | | | | | | | in the hash table internal to the pyexpat module's copy of the expat library to avoid a denial of service due to hash collisions. Patch by David Malcolm with some modifications by the expat project. | ||||
| * | Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes | Gregory P. Smith | 2012-03-14 | 1 | -0/+5 |
| | | | | | | | | | | | | in the hash table internal to the pyexpat module's copy of the expat library to avoid a denial of service due to hash collisions. Patch by David Malcolm with some modifications by the expat project. | ||||
| * | version now 3.1.5rc1v3.1.5rc1 | Benjamin Peterson | 2012-02-23 | 1 | -1/+1 |
| | | |||||
| * | Fix typo. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| | | |||||
* | | #14062: fix BytesParser handling of linesep for Header objects | R David Murray | 2012-03-14 | 1 | -0/+3 |
| | | | | | | | | This also affected smtplib.SMTP.send_message, which calls BytesParser. | ||||
* | | #14291: if a header has non-ascii unicode, default to CTE using utf-8 | R David Murray | 2012-03-14 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python2, if a unicode string was assigned as the value of a header, email would automatically CTE encode it using the UTF8 charset. This capability was lost in the Python3 translation, and this patch restores it. Patch by Ali Ikinci, assisted by R. David Murray. I also added a fix for the mailbox test that was depending (with a comment that it was a bad idea to so depend) on non-ASCII causing message_from_string to raise an error. It now uses support.patch to induce an error during message serialization. | ||||
* | | Issue #5219: Prevent event handler cascade in IDLE. | Martin v. Löwis | 2012-03-13 | 1 | -0/+2 |
| | | | | | | | | Patch by Roger Serwy. | ||||
* | | Issue #14184: Increase the default stack size for secondary threads on | Ned Deily | 2012-03-13 | 1 | -0/+3 |
| | | | | | | | | Mac OS X to prevent interpreter crashes when compiled on 10.7. | ||||
* | | Fix unittest test discovery for Jython | Michael Foord | 2012-03-13 | 1 | -0/+2 |
| | | |||||
* | | Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under ↵ | Antoine Pitrou | 2012-03-11 | 1 | -0/+3 |
| | | | | | | | | Windows when the child process has already exited. | ||||
* | | this stuff will actually be new in 3.2.4 | Benjamin Peterson | 2012-03-08 | 1 | -30/+45 |
| | | |||||
* | | allow cycles throught the __dict__ slot to be cleared (closes #1469629) | Benjamin Peterson | 2012-03-08 | 1 | -0/+3 |
| | | | | | | | | Patch from Armin, test from me. | ||||
* | | merge heads | Benjamin Peterson | 2012-03-07 | 1 | -2/+0 |
|\ \ | |||||
| * | | Backout buggy patch committed for #13719 | Éric Araujo | 2012-03-07 | 1 | -2/+0 |
| | | | |||||
* | | | keep the buffer object around while we're using it (closes #14212) | Benjamin Peterson | 2012-03-07 | 1 | -0/+3 |
|/ / | |||||
* | | Make distutils’ upload command work with bdist_msi products (#13719). | Éric Araujo | 2012-03-05 | 1 | -0/+2 |
| | | | | | | | | Patch by Ralf Schmitt. | ||||
* | | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. | Meador Inge | 2012-03-05 | 1 | -0/+4 |
| | | |||||
* | | Issue #14177: marshal.loads() now raises TypeError when given an unicode string. | Antoine Pitrou | 2012-03-03 | 1 | -0/+3 |
| | | | | | | | | Patch by Guilherme Gonçalves. | ||||
* | | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵ | Antoine Pitrou | 2012-03-02 | 1 | -0/+3 |
| | | | | | | | | (other than a bytes object). | ||||
* | | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵ | Antoine Pitrou | 2012-03-01 | 1 | -0/+5 |
| | | | | | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting. | ||||
* | | Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. | Antoine Pitrou | 2012-02-27 | 1 | -0/+3 |
| | | | | | | | | Patch by Mikhail Novikov. | ||||
* | | Issue #13521: dict.setdefault() now does only one lookup for the given key, ↵ | Antoine Pitrou | 2012-02-26 | 1 | -0/+3 |
| | | | | | | | | | | | | making it "atomic" for many purposes. Patch by Filip Gruszczyński. | ||||
* | | Add news entry for previous commit | Éric Araujo | 2012-02-25 | 1 | -0/+3 |
| | | |||||
* | | Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). | Éric Araujo | 2012-02-25 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 0a94e2f807c7 and 90b30d62caf2 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help. | ||||
* | | Bump version to 3.2.3rc1. | Georg Brandl | 2012-02-23 | 1 | -6/+6 |
| | | |||||
* | | Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵ | Antoine Pitrou | 2012-02-22 | 1 | -0/+3 |
| | | | | | | | | encoding. | ||||
* | | Issue #14053: Fix "make patchcheck" to work with MQ. | Nadeem Vawda | 2012-02-22 | 1 | -0/+3 |
| | | | | | | | | Patch by Francisco Martín Brugué | ||||
* | | Issue #6807: Run msisupport.mak earlier. | Martin v. Löwis | 2012-02-21 | 1 | -0/+2 |
| | | |||||
* | | Issue #10580: Minor grammar change in Windows installer. | Martin v. Löwis | 2012-02-21 | 1 | -0/+2 |
| | | |||||
* | | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures | Petri Lehtinen | 2012-02-21 | 1 | -0/+3 |
| | | | | | | | | Closes #8033. | ||||
* | | HTMLParser is now able to handle slashes in the start tag. | Ezio Melotti | 2012-02-21 | 1 | -0/+2 |
| | | |||||
* | | Fix typo. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| | | |||||
* | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵ | Georg Brandl | 2012-02-20 | 1 | -0/+5 |
|\ \ | |/ | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
| * | Issue #13703: add a way to randomize the hash values of basic types (str, ↵ | Georg Brandl | 2012-02-20 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
* | | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer | Charles-François Natali | 2012-02-18 | 1 | -0/+3 |
|\ \ | |/ | | | | | upon malformed POST request. | ||||
| * | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer | Charles-François Natali | 2012-02-18 | 1 | -0/+3 |
| | | | | | | | | upon malformed POST request. | ||||
* | | Fix a variable scoping error in an sqlite3 test | Petri Lehtinen | 2012-02-17 | 1 | -0/+2 |
| | | | | | | | | Closes #11689. | ||||
* | | sqlite3: Fix documentation errors concerning Cursor.rowcount | Petri Lehtinen | 2012-02-16 | 1 | -2/+2 |
| | | | | | | | | Closes #13995. | ||||
* | | NEWS entry for previous commit. | Gregory P. Smith | 2012-02-16 | 1 | -0/+2 |
| | | |||||
* | | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). | Antoine Pitrou | 2012-02-15 | 1 | -0/+2 |
| | | |||||
* | | Issue #13491: Fix many errors in sqlite3 documentation | Petri Lehtinen | 2012-02-15 | 1 | -0/+3 |
| | | | | | | | | Initial patch by Johannes Vogel. | ||||
* | | Fix parsing of build_ext --libraries option (#1326113) | Éric Araujo | 2012-02-15 | 1 | -0/+3 |
| | | |||||
* | | Issue #13020: Fix a reference leak when allocating a structsequence object ↵ | Antoine Pitrou | 2012-02-15 | 1 | -0/+3 |
| | | | | | | | | | | | | fails. Patch by Suman Saha. | ||||
* | | Issue #13015: Fix a possible reference leak in defaultdict.__repr__. | Antoine Pitrou | 2012-02-15 | 1 | -0/+3 |
| | | | | | | | | Patch by Suman Saha. | ||||
* | | Issue #10287: nntplib now queries the server's CAPABILITIES first before ↵ | Antoine Pitrou | 2012-02-14 | 1 | -0/+4 |
| | | | | | | | | | | | | sending MODE READER, and only sends it if not already in READER mode. Patch by Hynek Schlawack. |