Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Issue #13964: Write tests for new os.*utime*() functions | Victor Stinner | 2012-02-08 | 1 | -0/+37 | |
| | | | ||||||
* | | | Issue #13846: Add time.monotonic(), monotonic clock. | Victor Stinner | 2012-02-07 | 1 | -1/+17 | |
| | | | ||||||
* | | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 2 | -6/+6 | |
| | | | | | | | | | | | | | | | be consistent with other functions accepting file descriptors (fdlistdir() was added in 3.3, so hasn't been released yet). | |||||
* | | | Issue #10881: merge | Ned Deily | 2012-02-06 | 1 | -10/+13 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #10881: Fix test_site failure with OS X framework builds. | Ned Deily | 2012-02-05 | 1 | -10/+13 | |
| | | | ||||||
* | | | Issue #13734: Add os.fwalk(), a directory walking function yielding file | Charles-François Natali | 2012-02-05 | 1 | -2/+58 | |
| | | | | | | | | | | | | descriptors. | |||||
* | | | Fix failing test on big-endian machines (issue #13806). | Antoine Pitrou | 2012-02-04 | 1 | -8/+23 | |
|\ \ \ | |/ / | ||||||
| * | | Fix failing test on big-endian machines (issue #13806). | Antoine Pitrou | 2012-02-04 | 1 | -8/+23 | |
| | | | ||||||
* | | | Issue #13861: merge | Ned Deily | 2012-02-03 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #13861: Prevent test_apropos* test case failures in test_pydoc. | Ned Deily | 2012-02-03 | 1 | -2/+2 | |
| | | | ||||||
* | | | Merge. | Charles-François Natali | 2012-02-02 | 1 | -0/+23 | |
|\ \ \ | |/ / | ||||||
| * | | Merge. | Charles-François Natali | 2012-02-02 | 1 | -0/+23 | |
| |\ \ | ||||||
| | * | | Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix | Charles-François Natali | 2012-02-02 | 1 | -0/+23 | |
| | | | | | | | | | | | | | | | | | | | | a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust. | |||||
* | | | | Merge branch 3.2 | Petri Lehtinen | 2012-02-02 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | Closes #13402. | |||||
| * | | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -0/+3 | |
| |/ / | | | | | | | | | | Closes #13402. | |||||
* | | | Issue #1813: merge changeset that reverts a glibc workaround for the | Stefan Krah | 2012-02-02 | 1 | -3/+0 | |
|\ \ \ | |/ / | | | | | | | Fedora buildbot. | |||||
| * | | Issue #1813: Revert workaround for a glibc bug on the Fedora buildbot. | Stefan Krah | 2012-02-02 | 1 | -3/+0 | |
| | | | ||||||
* | | | Issue #8828: Add new function os.replace(), for cross-platform renaming with ↵ | Antoine Pitrou | 2012-01-30 | 1 | -0/+12 | |
| | | | | | | | | | | | | overwriting. | |||||
* | | | Issue #13847: Fix test_time, time.gmtime() doesn't use localtime() | Victor Stinner | 2012-01-29 | 1 | -1/+0 | |
| | | | | | | | | | | | | On Windows, localtime(-1) fails, but not gmtime(1). | |||||
* | | | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵ | Antoine Pitrou | 2012-01-29 | 2 | -0/+10 | |
|\ \ \ | |/ / | | | | | | | | | | | | | in the file name. Patch by Hynek Schlawack. | |||||
| * | | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵ | Antoine Pitrou | 2012-01-29 | 2 | -0/+10 | |
| | | | | | | | | | | | | | | | | | | in the file name. Patch by Hynek Schlawack. | |||||
* | | | merge 3.2 | Benjamin Peterson | 2012-01-29 | 1 | -285/+0 | |
|\ \ \ | |/ / | ||||||
| * | | remove tests from really old regex module | Benjamin Peterson | 2012-01-29 | 1 | -285/+0 | |
| | | | ||||||
* | | | Issue #13806: The size check in audioop decompression functions was too ↵ | Antoine Pitrou | 2012-01-28 | 1 | -6/+19 | |
|\ \ \ | |/ / | | | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. | |||||
| * | | Issue #13806: The size check in audioop decompression functions was too ↵ | Antoine Pitrou | 2012-01-28 | 1 | -6/+19 | |
| | | | | | | | | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. | |||||
* | | | 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. |