Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13895: fix test_ssl hanging under Ubuntu | Antoine Pitrou | 2012-01-28 | 1 | -25/+25 |
|\ | |||||
| * | Issue #13895: fix test_ssl hanging under Ubuntu | Antoine Pitrou | 2012-01-28 | 1 | -20/+20 |
| | | |||||
* | | Fix typo in comment. | Nadeem Vawda | 2012-01-28 | 1 | -1/+1 |
| | | |||||
* | | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch | Charles-François Natali | 2012-01-28 | 1 | -0/+1 |
|\ \ | |/ | | | | | by Matt Joiner. | ||||
| * | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch | Charles-François Natali | 2012-01-28 | 1 | -0/+1 |
| | | | | | | | | by Matt Joiner. | ||||
* | | Fix intermittent test_ssl failure. | Antoine Pitrou | 2012-01-27 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Fix intermittent test_ssl failure. | Antoine Pitrou | 2012-01-27 | 1 | -0/+1 |
| | | |||||
* | | Issue #13812: When a multiprocessing Process child raises an exception, ↵ | Antoine Pitrou | 2012-01-27 | 1 | -0/+23 |
|\ \ | |/ | | | | | flush stderr after printing the exception traceback. | ||||
| * | Issue #13812: When a multiprocessing Process child raises an exception, ↵ | Antoine Pitrou | 2012-01-27 | 1 | -0/+23 |
| | | | | | | | | flush stderr after printing the exception traceback. | ||||
* | | Issue #13847: Make test_localtime_failure() more robust | Victor Stinner | 2012-01-27 | 1 | -10/+15 |
| | | | | | | | | Skip the test if we are unable to find an invalid time_t value. | ||||
* | | Issue #13847: Fix test_mktime(), time.localtime() now raises OSError | Victor Stinner | 2012-01-26 | 1 | -1/+1 |
| | | |||||
* | | Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead | Victor Stinner | 2012-01-26 | 1 | -0/+15 |
| | | | | | | | | | | of ValueError on failure. time.ctime() and time.asctime() now raises an OSError if localtime() failed. | ||||
* | | Issue #13862: Relax zlib version test to avoid spurious failures. | Nadeem Vawda | 2012-01-25 | 1 | -6/+6 |
| | | |||||
* | | Port import fixes from 2.7. | Antoine Pitrou | 2012-01-25 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Port import fixes from 2.7. | Antoine Pitrou | 2012-01-25 | 1 | -1/+1 |
| | | |||||
* | | Issue #12804: Fix test failures on systems without internet access. | Nadeem Vawda | 2012-01-25 | 2 | -6/+13 |
| | | |||||
* | | Remove redundant resource check in test_socket. | Nadeem Vawda | 2012-01-25 | 1 | -1/+0 |
| | | |||||
* | | Port remaining test fixes, and fix test_importlib too. | Antoine Pitrou | 2012-01-25 | 1 | -8/+21 |
|\ \ | |/ | |||||
| * | Port remaining test fixes, and fix test_importlib too. | Antoine Pitrou | 2012-01-25 | 1 | -0/+5 |
| | | |||||
| * | Make test work under 32-bit systems, and when invoked through ↵ | Antoine Pitrou | 2012-01-25 | 1 | -8/+16 |
| | | | | | | | | | | | | Lib/test/regrtest.py (rather than `-m test.regrtest`) | ||||
* | | Issue #11235: Fix OverflowError when trying to import a source file whose ↵ | Antoine Pitrou | 2012-01-24 | 1 | -0/+12 |
|\ \ | |/ | | | | | modification time doesn't fit in a 32-bit timestamp. | ||||
| * | Issue #11235: Fix OverflowError when trying to import a source file whose ↵ | Antoine Pitrou | 2012-01-24 | 1 | -0/+12 |
| | | | | | | | | modification time doesn't fit in a 32-bit timestamp. | ||||
* | | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 1 | -2/+7 |
|\ \ | |/ | | | | | | | target's type (file or directory). The detection was buggy and made the call non-atomic (therefore prone to race conditions). | ||||
| * | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 1 | -2/+7 |
| | | | | | | | | | | target's type (file or directory). The detection was buggy and made the call non-atomic (therefore prone to race conditions). | ||||
* | | Issue #10278: wallclock() cannot go backward, but two consecutive calls | Victor Stinner | 2012-01-23 | 1 | -1/+1 |
| | | | | | | | | may return the same time. | ||||
* | | Fix a unittest error seen on NetBSD 5. | Gregory P. Smith | 2012-01-22 | 1 | -2/+12 |
|\ \ | |/ | |||||
| * | Fix a unittest error seen on NetBSD 5. | Gregory P. Smith | 2012-01-22 | 1 | -2/+12 |
| | | |||||
* | | Fixes issue #8052: The posix subprocess module's close_fds behavior was | Gregory P. Smith | 2012-01-21 | 1 | -0/+18 |
|\ \ | |/ | | | | | | | | | | | | | suboptimal by closing all possible file descriptors rather than just the open ones in the child process before exec(). It now closes only the open fds when it is possible to safely determine what those are. | ||||
| * | Fixes issue #8052: The posix subprocess module's close_fds behavior was | Gregory P. Smith | 2012-01-21 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | suboptimal by closing all possible file descriptors rather than just the open ones in the child process before exec(). It now closes only the open fds when it is possible to safely determine what those are. | ||||
* | | Issue #13706: Support non-ASCII fill characters | Victor Stinner | 2012-01-21 | 1 | -0/+20 |
| | | |||||
* | | merge from 3.2 | Senthil Kumaran | 2012-01-21 | 2 | -0/+5 |
|\ \ | |/ | |||||
| * | Fix Issue6631 - Disallow relative file paths in urllib urlopen | Senthil Kumaran | 2012-01-21 | 2 | -0/+5 |
| | | |||||
| * | #13760: picklability tests for configparser exceptions | Łukasz Langa | 2012-01-20 | 1 | -0/+145 |
| | | |||||
* | | add another test case | Benjamin Peterson | 2012-01-20 | 1 | -0/+1 |
| | | |||||
* | | #13760: picklability tests for configparser exceptions | Łukasz Langa | 2012-01-20 | 1 | -0/+145 |
| | | |||||
* | | Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannot | Victor Stinner | 2012-01-20 | 1 | -4/+9 |
| | | | | | | | | go backward) | ||||
* | | check after comments, too (#13832) | Benjamin Peterson | 2012-01-19 | 1 | -0/+2 |
| | | |||||
* | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ↵ | Meador Inge | 2012-01-19 | 1 | -0/+28 |
| | | | | | | | | interactive statement | ||||
* | | Issue #2134: Add support for tokenize.TokenInfo.exact_type. | Meador Inge | 2012-01-19 | 1 | -1/+74 |
| | | |||||
* | | Be more lenient in test_wallclock (issue #10278). | Antoine Pitrou | 2012-01-18 | 1 | -2/+2 |
| | | |||||
* | | Add part of test_inspect test from 2.7 | Antoine Pitrou | 2012-01-18 | 1 | -0/+11 |
|\ \ | |/ | |||||
| * | Add part of test_inspect test from 2.7 | Antoine Pitrou | 2012-01-18 | 1 | -0/+11 |
| | | |||||
* | | Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects. | Nadeem Vawda | 2012-01-18 | 1 | -0/+8 |
|\ \ | |/ | |||||
| * | Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. | Nadeem Vawda | 2012-01-18 | 1 | -0/+8 |
| | | |||||
* | | Close #10278: Add time.wallclock() function, monotonic clock. | Victor Stinner | 2012-01-18 | 1 | -0/+7 |
| | | |||||
* | | Issue #13809: Make bz2 module work with threads disabled. | Nadeem Vawda | 2012-01-17 | 1 | -0/+7 |
| | | | | | | | | Original patch by Amaury Forgeot d'Arc. | ||||
* | | Test running of code in a sub-interpreter | Antoine Pitrou | 2012-01-17 | 1 | -0/+17 |
|\ \ | |/ | | | | | (prelude to issue #6531). | ||||
| * | Test running of code in a sub-interpreter | Antoine Pitrou | 2012-01-17 | 1 | -0/+17 |
| | | | | | | | | (prelude to issue #6531). | ||||
* | | Issue #13589: Fix some serialization primitives in the aifc module. | Antoine Pitrou | 2012-01-17 | 1 | -0/+37 |
|\ \ | |/ | | | | | Patch by Oleg Plakhotnyuk. | ||||
| * | Issue #13589: Fix some serialization primitives in the aifc module. | Antoine Pitrou | 2012-01-17 | 1 | -0/+37 |
| | | | | | | | | Patch by Oleg Plakhotnyuk. |