- 29 Haz, 2011 10 kayıt (commit)
-
-
Victor Stinner yazdı
.truncate(0) doesn't rewind.
-
Victor Stinner yazdı
anymore regrtest doesn't check that a test doesn't output anything anymore.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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.
-
Victor Stinner yazdı
If verbose is False, the output is empty. Fix also a typo in a variable name.
-
Victor Stinner yazdı
* Don't force verbose to True with option -W * Rename rerun_failed variable to output_on_failure
-
Victor Stinner yazdı
a io.StringIO object by regrtest (which has no file descriptor).
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the output and displays it on failure instead. regrtest -v doesn't print the error twice anymore if there is only one error.
-
- 28 Haz, 2011 1 kayıt (commit)
-
-
Ned Deily yazdı
os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
-
- 27 Haz, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
A patch from Vincent Legoll.
-
- 26 Haz, 2011 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 25 Haz, 2011 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 24 Haz, 2011 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Francisco Martín Brugué.
-
- 23 Haz, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Locks are implemented using a mutex and a condition variable of the pthread library on FreeBSD6. POSIX condition variables cannot be interrupted by signals (see pthread_cond_wait manual page).
-
- 22 Haz, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
Cannot test an empty environment on Windows: Windows requires at least the SYSTEMROOT environment variable to start Python.
-
Victor Stinner yazdı
Mac OS X adds __CF_USER_TEXT_ENCODING variable to an empty environment. Fix also the test on the Py_ENABLE_SHARED config varible: test that the variable is present, don't check it's value.
-
- 21 Haz, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
Try also to get more informations about the Mac OS X failure: display the keys of the environment, instead of just the number of variables.
-
Victor Stinner yazdı
variables, start with an empty environment.
-
- 20 Haz, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
processes if negative or null.
-
- 19 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 18 Haz, 2011 1 kayıt (commit)
-
-
R David Murray yazdı
This makes them work like the close provided by regular file objects.
-
- 17 Haz, 2011 3 kayıt (commit)
-
-
R David Murray yazdı
All of the other methods in mailbox that create message objects take care to close the file descriptors they use, so it seems to make sense to have __getitem__ do so as well. Patch by Filip Gruszczyński.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti.
-
- 13 Haz, 2011 1 kayıt (commit)
-
-
Brian Curtin yazdı
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).
-
- 11 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
-
- 10 Haz, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
Just try to open files from the ZIP for reading, don't extract them to avoid UnicodeEncodeError if the filename is not encodable to the filesystem encoding (e.g. ASCII locale encoding).
-
- 09 Haz, 2011 2 kayıt (commit)
-
-
R David Murray yazdı
Original fix by 'rep', final patch (with tests) by Xuanji Li.
-
R David Murray yazdı
I unfortunately introduced the regression when I refactored the code, and there were no tests of quoting so it wasn't caught. Now there is one.
-
- 07 Haz, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 03 Haz, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
test_multibytecodec_support. Improve also error message of the test_errorhandle() of TestBase.
-
Raymond Hettinger yazdı
-
- 01 Haz, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
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.
-
- 31 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
-
- 30 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
iso2022_jp, iso2022_jp_2 and iso2022_kr
-