- 17 Oct, 2010 15 commits
-
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
as (~0U) on NetBSD which was causing it to appear as -1 when used as a signed int for _multprocessing.SemLock.SEM_VALUE_MAX. This works around the problem by substituting INT_MAX on systems where it appears negative when used as an int.
-
Victor Stinner authored
-
Victor Stinner authored
Fix the test if the native filesystem encoding is not utf-8 (eg. cp1250 on Windows).
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Victor Stinner authored
* 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 authored
fixes for netbsd (and dragonflybsd?)
-
Gregory P. Smith authored
-
- 16 Oct, 2010 23 commits
-
-
Victor Stinner authored
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 authored
path value may be changed, so keep a copy in a new variable.
-
Victor Stinner authored
to support surrogate characters
-
Victor Stinner authored
_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 authored
surrogate characters.
-
Victor Stinner authored
-
Victor Stinner authored
surrogate characters.
-
Victor Stinner authored
new test specific to unicode (non-ascii name and filename).
-
Georg Brandl authored
-
Alexander Belopolsky authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Barry Warsaw authored
-
Victor Stinner authored
Fix my previous commit (r85569).
-
Victor Stinner authored
filenames encoded to the filesystem encoding with surrogateescape error handler (to support undecodable bytes), instead of UTF-8 in strict mode.
-
Victor Stinner authored
It occurs if the path contains surrogates.
-
Brian Quinlan authored
-
Brian Quinlan authored
-
Brian Quinlan authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Barry Warsaw authored
-
Barry Warsaw authored
* 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 Oct, 2010 2 commits
-
-
Benjamin Peterson authored
-
R. David Murray authored
Patch by Sébastien Sablé.
-