- 17 Eki, 2010 8 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Fix the test if the native filesystem encoding is not utf-8 (eg. cp1250 on Windows).
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
* Rename _PyImport_FindExtension() to _PyImport_FindExtensionUnicode(): the filename becomes a Unicode object instead of byte string * Rename _PyImport_FixupExtension() to _PyImport_FixupExtensionUnicode(): the filename becomes a Unicode object instead of byte string
-
Gregory P. Smith yazdı
fixes for netbsd (and dragonflybsd?)
-
Gregory P. Smith yazdı
-
- 16 Eki, 2010 23 kayıt (commit)
-
-
Victor Stinner yazdı
test_args_string() and test_call_string() create shell scripts including the path to the Python executable: use surrogateescape to encode paths including surrogate characters.
-
Victor Stinner yazdı
path value may be changed, so keep a copy in a new variable.
-
Victor Stinner yazdı
to support surrogate characters
-
Victor Stinner yazdı
_Py_char2wchar() callers usually need the result size in characters. Since it's trivial to compute it in _Py_char2wchar() (O(1) whereas wcslen() is O(n)), add an option to get it.
-
Victor Stinner yazdı
surrogate characters.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
surrogate characters.
-
Victor Stinner yazdı
new test specific to unicode (non-ascii name and filename).
-
Georg Brandl yazdı
-
Alexander Belopolsky yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Barry Warsaw yazdı
-
Victor Stinner yazdı
Fix my previous commit (r85569).
-
Victor Stinner yazdı
filenames encoded to the filesystem encoding with surrogateescape error handler (to support undecodable bytes), instead of UTF-8 in strict mode.
-
Victor Stinner yazdı
It occurs if the path contains surrogates.
-
Brian Quinlan yazdı
-
Brian Quinlan yazdı
-
Brian Quinlan yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
* Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
-
- 15 Eki, 2010 9 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
R. David Murray yazdı
Patch by Sébastien Sablé.
-
Victor Stinner yazdı
filesystem encoding instead of utf-8. imp_cache_from_source() encodes the input path to filesystem encoding and this path is passed to make_compiled_pathname().
-
Victor Stinner yazdı
path
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
module path
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-