Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7978: socketserver now restarts the select() call when EINTR is returned. | Antoine Pitrou | 2012-04-08 | 2 | -0/+5 |
| | | | | | This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera. | ||||
* | Issue #14496: Fix wrong name in idlelib/tabbedpages.py. | Andrew Svetlov | 2012-04-05 | 1 | -0/+3 |
| | | | | Patch by Popa Claudiu. | ||||
* | Issue #14482: Raise a ValueError, not a NameError, when trying to create | Antoine Pitrou | 2012-04-03 | 1 | -0/+4 |
| | | | | | a multiprocessing Client or Listener with an AF_UNIX type address under Windows. Patch by Popa Claudiu. | ||||
* | Issue #14471: Fix a possible buffer overrun in the winreg module. | Kristján Valur Jónsson | 2012-04-02 | 1 | -0/+2 |
| | |||||
* | prevent writing to stderr from messing up the exception state (closes #14474) | Benjamin Peterson | 2012-04-02 | 1 | -0/+3 |
| | |||||
* | Issue #14151: Raise a ValueError, not a NameError, when trying to create | Antoine Pitrou | 2012-04-01 | 1 | -0/+4 |
| | | | | | a multiprocessing Client or Listener with an AF_PIPE type address under non-Windows platforms. Patch by Popa Claudiu. | ||||
* | Issue #13019: Fix potential reference leaks in bytearray.extend(). | Antoine Pitrou | 2012-04-01 | 1 | -0/+3 |
| | | | | Patch by Suman Saha. | ||||
* | Issue #13872: socket.detach() now marks the socket closed (as mirrored in ↵ | Antoine Pitrou | 2012-03-31 | 1 | -0/+3 |
| | | | | | | the socket repr()). Patch by Matt Joiner. | ||||
* | Issue #14437: Fix building the _io module under Cygwin. | Antoine Pitrou | 2012-03-31 | 1 | -0/+2 |
| | |||||
* | Issue #14406: Fix a race condition when using ↵ | Antoine Pitrou | 2012-03-31 | 1 | -0/+3 |
| | | | | | | `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner. | ||||
* | update NEWS as Terry Reedy proposed | Andrew Svetlov | 2012-03-31 | 1 | -2/+4 |
| | |||||
* | Issue #14409: IDLE doesn't not execute commands from shell with default ↵ | Andrew Svetlov | 2012-03-29 | 1 | -0/+3 |
| | | | | | | keybinding for <Return>. Patch by Roger Serwy. | ||||
* | issue 10340 - forgot to update Misc/NEWS | Giampaolo Rodola' | 2012-03-22 | 1 | -0/+4 |
| | |||||
* | Issue #14387: Do not include accu.h from Python.h. | Antoine Pitrou | 2012-03-22 | 1 | -0/+2 |
| | |||||
* | check by equality for __future__ not identity (closes #14378) | Benjamin Peterson | 2012-03-22 | 1 | -0/+3 |
| | |||||
* | #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v | R David Murray | 2012-03-21 | 1 | -0/+3 |
| | |||||
* | #3573: idle now doesn't hungs if launched as: idle -e <directory> | Andrew Svetlov | 2012-03-21 | 1 | -0/+3 |
| | | | | Patch by Guilherme Polo. | ||||
* | Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. | Giampaolo Rodola' | 2012-03-20 | 1 | -0/+3 |
| | |||||
* | Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. | Ross Lagerwall | 2012-03-19 | 2 | -0/+7 |
| | | | | Based on patch from Hervé Coatanhay. | ||||
* | Fixes Issue #14331: Use significantly less stack space when importing modules by | Gregory P. Smith | 2012-03-18 | 1 | -0/+3 |
| | | | | allocating path buffers on the heap instead of the stack. | ||||
* | Merge 3.2.3rc2 from release clone. | Georg Brandl | 2012-03-18 | 2 | -1/+33 |
|\ | |||||
| * | Post-release updates for 3.2.3rc2. | Georg Brandl | 2012-03-18 | 1 | -0/+12 |
| | | |||||
| * | Bump to 3.2.3rc2.v3.2.3rc2 | Georg Brandl | 2012-03-18 | 2 | -11/+8 |
| | | |||||
| * | Transplant from main repo d6c197edd99b: Fixes Issue #14234: CVE-2012-0876: ↵ | Georg Brandl | 2012-03-15 | 1 | -2/+10 |
| | | | | | | | | Randomize hashes of xml attributes | ||||
| * | 3.2.3rc1 done | Georg Brandl | 2012-02-25 | 1 | -4/+16 |
| | | |||||
| * | 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. | ||||
* | | 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 | 2 | -2/+2 |
| | | | |||||
* | | | #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 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 |
| | | | |||||
* | | | #14179: add tests for re.compile. Patch by Florian Mladitsch. | Ezio Melotti | 2012-03-12 | 1 | -0/+1 |
| | | | |||||
* | | | str.format_map tests don't do what they say: fix to actually implement the ↵ | Eric V. Smith | 2012-03-12 | 1 | -0/+1 |
| | | | | | | | | | | | | intent of the test. Closes #13450. | ||||
* | | | 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 | 2 | -0/+4 |
| | | | | | | | | | | | | Patch by Guilherme Gonçalves. |