- 18 May, 2012 1 commit
-
-
Richard Oudkerk authored
Initial patch by Sergey Mezentsev.
-
- 13 May, 2012 1 commit
-
-
Martin v. Löwis authored
Patch by Serhiy Storchaka.
-
- 12 May, 2012 1 commit
-
-
Antoine Pitrou authored
Patch by Hynek Schlawack.
-
- 01 May, 2012 1 commit
-
-
Martin v. Löwis authored
Patch by Serhiy Storchaka.
-
- 29 Apr, 2012 2 commits
-
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
the DST transition. Patch by Joe Peterson.
-
- 24 Mar, 2012 1 commit
-
-
Charles-François Natali authored
-
- 21 Mar, 2012 1 commit
-
-
Stefan Krah authored
up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.
-
- 26 Feb, 2012 1 commit
-
-
Charles-François Natali authored
-
- 20 Feb, 2012 1 commit
-
-
Antoine Pitrou authored
-
- 10 Dec, 2011 1 commit
-
-
Charles-François Natali authored
-
- 04 Oct, 2011 4 commits
-
-
Éric Araujo authored
This helper was changed to work with any object instead of only modules (or technically something with a __name__ attribute, see code in 3.2) but the message stayed as is.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
memory watchdog for timely stats collection.
-
Antoine Pitrou authored
- bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption
-
- 03 Oct, 2011 1 commit
-
-
Charles-François Natali authored
-
- 19 Sep, 2011 1 commit
-
-
Nick Coghlan authored
-
- 30 Aug, 2011 1 commit
-
-
Antoine Pitrou authored
Windows does set the errno attribute to ENOENT, but the error message displays the Windows error number (3 -> ERROR_PATH_NOT_FOUND), not the errno number (2 -> ENOENT). The Unix errno corresponding to 3 is ESRCH, explaining the confusion, which can be seen in the following snippet: >>> shutil.rmtree("foo") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "Z:\default\lib\shutil.py", line 272, in rmtree onerror(os.listdir, path, sys.exc_info()) File "Z:\default\lib\shutil.py", line 270, in rmtree names = os.listdir(path) WindowsError: [Error 3] The system cannot find the path specified: 'foo\\*.*' >>> e = sys.last_value >>> e.errno 2 >>> e.winerror 3 >>> errno.errorcode[2] 'ENOENT' For reference, see PC/errmap.h and http://msdn.microsoft.com/en-us/library/ms681382%28v=vs.85%29.aspx
-
- 29 Aug, 2011 1 commit
-
-
Antoine Pitrou authored
(more than 2**31 items). Instead, in most cases, an OverflowError is raised.
-
- 20 Aug, 2011 1 commit
-
-
Victor Stinner authored
* Use str.startswith(tuple): I didn't know this Python feature, Python rocks! * Replace sometimes sys.platform.startswith('linux') with sys.platform == 'linux' * sys.platform doesn't contain the major version on Cygwin on Mac OS X (it's just 'cygwin' and 'darwin')
-
- 29 Jul, 2011 1 commit
-
-
Antoine Pitrou authored
with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
-
- 23 Jul, 2011 2 commits
-
-
Antoine Pitrou authored
running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
-
Eli Bendersky authored
Based on original patch by Giampaolo Rodola with contributions from R. David Murray
-
- 15 Jul, 2011 2 commits
-
-
Antoine Pitrou authored
-
Éric Araujo authored
-
- 14 Jul, 2011 1 commit
-
-
Benjamin Peterson authored
-
- 09 Jul, 2011 2 commits
-
-
Antoine Pitrou authored
failure in name resolution. Should fix a buildbot failure.
-
Antoine Pitrou authored
failure in name resolution. Should fix a buildbot failure.
-
- 30 Jun, 2011 1 commit
-
-
Victor Stinner authored
We don't need to create a temporary buffered binary or text file object just to create an empty file. Replace also os.fdopen(handle).close() by os.close(handle).
-
- 29 Jun, 2011 1 commit
-
-
Victor Stinner authored
regrtest doesn't check that tests doesn't write something to stdout anymore. Don't replace sys.stdout by the original sys.stdout to be able to capture the output for regrtest -W.
-
- 13 Jun, 2011 1 commit
-
-
Brian Curtin authored
Use of DeviceIoControl to obtain the symlink path via the reparse tag was removed. The code now uses GetFinalPathNameByHandle in the case of a symbolic link and works properly given the added test which creates a symbolic link and calls os.stat on it from multiple locations. Victor Stinner also noticed an issue with os.lstat following the os.stat code path when being passed bytes. The posix_lstat function was adjusted to properly hook up win32_lstat instead of the previous STAT macro (win32_stat).
-
- 07 Jun, 2011 1 commit
-
-
Victor Stinner authored
-
- 03 Jun, 2011 1 commit
-
-
Charles-François Natali authored
-
- 01 Jun, 2011 2 commits
-
-
Victor Stinner authored
descriptor of a pipe closed in the parent process is valid in the child process according to fstat(), but the mode of the file descriptor is invalid, and read or write raise an error. Add also requires_mac_ver() decorator to test.support.
-
Victor Stinner authored
Add also linux_version() to __all__.
-
- 29 May, 2011 1 commit
-
-
Charles-François Natali authored
underlying OS pipe buffer size.
-
- 23 May, 2011 1 commit
-
-
Victor Stinner authored
-
- 19 May, 2011 1 commit
-
-
Ezio Melotti authored
Skip tests that require zlib in the packaging tests. Also add a requires_zlib decorator to test.support.
-
- 14 May, 2011 2 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-