- 14 Aug, 2010 14 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Use stat() or _wstat() depending on the OS.
-
Georg Brandl authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Victor Stinner authored
-
- 13 Aug, 2010 18 commits
-
-
Victor Stinner authored
It's a ParseTuple converter: decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is. * Don't specify surrogateescape error handler in the comments nor the documentation, but PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_EncodeFSDefault() because these functions use strict error handler for the mbcs encoding (on Windows). * Remove PyUnicode_FSConverter() comment in unicodeobject.c to avoid inconsistency with unicodeobject.h.
-
Victor Stinner authored
* Use _Py_wchar2char() in _wstat() and _Py_wfopen() * Document _Py_char2wchar()
-
Antoine Pitrou authored
at interpreter startup before importing any non-builtin modules. Should fix #9589.
-
Victor Stinner authored
-
Antoine Pitrou authored
compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos.
-
Brian Curtin authored
-
R. David Murray authored
Also add myself as assignable for email issues.
-
Victor Stinner authored
Omit the filename to avoid enconding issues, especially with non encodable characters in the Python full path.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Georg Brandl authored
-
Victor Stinner authored
Similar to PyErr_WarnEx() but use PyUnicode_FromFormatV() to format the warning message. Strip also some trailing spaces.
-
Victor Stinner authored
-
Victor Stinner authored
test_imp fails on Linux with C locale because TESTFN_UNICODE is not encodable to ascii.
-
Victor Stinner authored
This function is only by imp.find_module() which does return the filename in a separated variable.
-
Victor Stinner authored
* On non-Windows OSes: the constructor accepts bytes filenames and use surrogateescape for unicode filenames * On Windows: use GetFileAttributesW() instead of GetFileAttributesA()
-
Victor Stinner authored
* Use 0xff byte on non-Windows OSes * mbcs is now really strict by default: i closed the issue #850997, so use the filesystem encoding and not Latin-1 * Rename TESTFN_UNICODE_UNENCODEABLE to TESTFN_UNENCODEABLE
-
- 12 Aug, 2010 3 commits
-
-
Eric Smith authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
BadZipfile error is raised if it doesn't match (as used to be the case in Python 2.5 and earlier).
-
- 11 Aug, 2010 5 commits
-
-
Benjamin Peterson authored
Patch by David Watson.
-
Alexander Belopolsky authored
va_copy, but available on all python platforms. Untabified a few unrelated files.
-
Tim Golden authored
#9055: remove assertion at the end of test_8959_b since the test is about crashing, not about counting and is difficult to manage when run as a service
-
Tim Golden authored
-
Antoine Pitrou authored
original read request had been satisfied, which can block indefinitely when the underlying raw IO channel is e.g. a socket. Report and original patch by Jason V. Miller.
-