Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #11999: sync based on comparing mtimes, not mtime to system clock | R David Murray | 2011-05-07 | 1 | -0/+4 |
|\ | |||||
| * | #11999: sync based on comparing mtimes, not mtime to system clock | R David Murray | 2011-05-07 | 1 | -0/+4 |
| | | |||||
* | | ntpath.samefile fails to detect that "A.TXT" and "a.txt" refer to the same ↵ | Ronald Oussoren | 2011-05-06 | 1 | -0/+3 |
| | | | | | | | | | | | | file on Windows XP. Noticed while researching a buildbot failure due to a patch for issue #10684. | ||||
* | | Issue #12000: When a SSL certificate has a subjectAltName without any | Antoine Pitrou | 2011-05-06 | 2 | -0/+5 |
| | | | | | | | | | | dNSName entry, ssl.match_hostname() should use the subject's commonName. Patch by Nicolas Bareil. | ||||
* | | merge from 3.1 | Ronald Oussoren | 2011-05-06 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Fix for issue 10684: Folders get deleted when trying to change case with ↵ | Ronald Oussoren | 2011-05-06 | 1 | -0/+4 |
| | | | | | | | | shutil.move (case insensitive file systems only) | ||||
* | | #11873: Improve test regex so random directory names don't cause test to fail | R David Murray | 2011-05-05 | 1 | -0/+3 |
| | | |||||
* | | Issue #11647: allow contextmanager objects to be used as decorators as ↵ | Nick Coghlan | 2011-05-05 | 2 | -0/+5 |
| | | | | | | | | described in the docs. Initial patch by Ysj Ray. | ||||
* | | Issue #1856: Avoid crashes and lockups when daemon threads run while the | Antoine Pitrou | 2011-05-04 | 1 | -0/+4 |
| | | | | | | | | | | interpreter is shutting down; instead, these threads are now killed when they try to take the GIL. | ||||
* | | Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable. | Raymond Hettinger | 2011-05-03 | 1 | -0/+2 |
| | | |||||
* | | logging: don't define QueueListener if Python has no thread support | Victor Stinner | 2011-05-02 | 1 | -0/+2 |
| | | |||||
* | | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X | Victor Stinner | 2011-05-01 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. | ||||
| * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a | Victor Stinner | 2011-05-01 | 1 | -0/+3 |
| | | | | | | | | mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. | ||||
* | | (Merge 3.1) Issue #9756: credit the author, Andreas Stührk (Trundle) | Victor Stinner | 2011-05-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #9756: credit the author, Andreas Stührk (Trundle) | Victor Stinner | 2011-05-01 | 2 | -1/+2 |
| | | |||||
* | | (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper | Victor Stinner | 2011-05-01 | 1 | -0/+5 |
|\ \ | |/ | | | | | | | | | descriptor, the check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type). | ||||
| * | Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the | Victor Stinner | 2011-05-01 | 1 | -0/+5 |
| | | | | | | | | | | | | check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type). | ||||
* | | Merge #11971: fix man page; it's -OO not -O0 | R David Murray | 2011-05-01 | 1 | -2/+2 |
|\ \ | |/ | | | | | Patch by Lars Michelsen. | ||||
| * | #11971: fix man page; it's -OO not -O0 | R David Murray | 2011-05-01 | 1 | -2/+2 |
| | | | | | | | | Patch by Lars Michelsen. | ||||
* | | Issue #10914: Initialize correctly the filesystem codec when creating a new | Victor Stinner | 2011-04-26 | 1 | -0/+4 |
| | | | | | | | | | | | | | | subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure. | ||||
* | | Mentioned issues #11324 and #11858. | Łukasz Langa | 2011-04-30 | 1 | -0/+5 |
| | | |||||
* | | Closes #11324: ConfigParser(interpolation=None) doesn't work. | Łukasz Langa | 2011-04-28 | 1 | -0/+1 |
| | | | | | | | | Initial patches by Tobias Brink. Thanks! | ||||
* | | Added Yuxiao Zeng for finding and resolving #11858. Thanks! | Łukasz Langa | 2011-04-28 | 1 | -0/+1 |
| | | |||||
* | | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* | Antoine Pitrou | 2011-04-27 | 1 | -0/+4 |
| | | | | | | | | | | APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali. | ||||
* | | #11763: merge with 3.1. | Ezio Melotti | 2011-04-27 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵ | Ezio Melotti | 2011-04-27 | 1 | -0/+3 |
| | | | | | | | | are too long. | ||||
* | | merge from 3.1 | Senthil Kumaran | 2011-04-26 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Update News entry for Issue11236 | Senthil Kumaran | 2011-04-26 | 1 | -0/+2 |
| | | |||||
* | | #6780: merge with 3.1. | Ezio Melotti | 2011-04-26 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #6780: fix starts/endswith error message to mention that tuples are accepted ↵ | Ezio Melotti | 2011-04-26 | 1 | -0/+3 |
| | | | | | | | | too. | ||||
* | | Merge #11901: add description of how bitfields are laid out to hexversion docs | R David Murray | 2011-04-25 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch by Sijin Joseph. | ||||
| * | #11901: add description of how bitfields are laid out to hexversion docs | R David Murray | 2011-04-25 | 1 | -0/+1 |
| | | | | | | | | Patch by Sijin Joseph. | ||||
* | | Issue #10914: add NEWS item. | Antoine Pitrou | 2011-04-25 | 1 | -0/+2 |
| | | |||||
* | | pybench prep_times calculation error (closes #11895) | Jesus Cea | 2011-04-25 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | pybench prep_times calculation error (closes #11895) | Jesus Cea | 2011-04-25 | 1 | -0/+1 |
| | | |||||
* | | MERGE: startswith and endswith don't accept None as slice index. Patch by ↵ | Jesus Cea | 2011-04-20 | 2 | -0/+4 |
|\ \ | |/ | | | | | Torsten Becker. (closes #11828) | ||||
| * | startswith and endswith don't accept None as slice index. Patch by Torsten ↵ | Jesus Cea | 2011-04-20 | 2 | -0/+4 |
| | | | | | | | | Becker. (closes #11828) | ||||
| * | merge | Raymond Hettinger | 2011-04-19 | 1 | -0/+6 |
| |\ | |||||
| * | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 |
| | | | |||||
* | | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 |
|\ \ \ | |||||
| * | | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 |
| | | | | |||||
* | | | | Merge test_startfile fix from 3.1. | Nadeem Vawda | 2011-04-18 | 1 | -0/+2 |
|\ \ \ \ | | |_|/ | |/| | | |||||
| * | | | Fix sporadic failure in test_startfile. | Nadeem Vawda | 2011-04-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD. | ||||
* | | | | (Merge 3.1) Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -0/+4 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file. | ||||
| * | | | Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -0/+4 |
| | |/ | |/| | | | | | | | | | | Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file. | ||||
* | | | #11492: rewrite header folding algorithm. Less code, more passing tests. | R David Murray | 2011-04-18 | 1 | -0/+2 |
| |/ |/| | |||||
* | | Issue #11790: Fix sporadic failures in ↵ | Antoine Pitrou | 2011-04-16 | 1 | -0/+2 |
| | | | | | | | | test_multiprocessing.WithProcessesTestCondition. | ||||
* | | Fix possible "file already exists" error when running the tests in parallel. | Antoine Pitrou | 2011-04-16 | 1 | -0/+2 |
| | | | | | | | | | | | | This is a perfect example of LBYL going wrong: that code could be executed by several workers in parallel, and os.mkdir() attempted on the same path by multiple processes. | ||||
* | | Issue #11852: Add missing imports and update tests. | Vinay Sajip | 2011-04-15 | 1 | -0/+2 |
| | | |||||
* | | Fix minor subclassing issue with collections.Counter | Raymond Hettinger | 2011-04-15 | 1 | -0/+2 |
|\ \ | |/ |