- 19 Eki, 2010 5 kayıt (commit)
-
-
Georg Brandl yazdı
#10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this.
-
Alexander Belopolsky yazdı
Thanks Boštjan Mejak for the patch.
-
Vinay Sajip yazdı
logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation.
-
Senthil Kumaran yazdı
-
Victor Stinner yazdı
Don't fallback to utf-8 anymore to avoid mojibake. I never got any error from his function.
-
- 18 Eki, 2010 26 kayıt (commit)
-
-
Victor Stinner yazdı
PyErr_Format() and PyUnicode_FromFormat() are able to allocate the right buffer size and to catch memory allocation failures.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
UTF-8 is just fine for module names.
-
Victor Stinner yazdı
I cannot use %U: fullname is a bytes object, not an unicode object. %A format cannot be used, it adds 'b' (bytes) prefix. So create cant_find_module() function to decode the filename and raise the error message.
-
Victor Stinner yazdı
It was not completly implemented. Add a test.
-
Victor Stinner yazdı
Use PyUnicode_FSConverter to support surrogates in the full name.
-
Victor Stinner yazdı
Don't hardcode path size in make_filename().
-
Barry Warsaw yazdı
This adds $ABIFLAGS to the static library, since it should match the shared library name. Also, include the abiflags in python-config --libs.
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
use encoding other than ASCII or UTF-8. Source encoding is preserved when reindented code is written to a file.
-
Georg Brandl yazdı
-
Victor Stinner yazdı
instead of utf-8.
-
Victor Stinner yazdı
the unicode flag, to decode the filename, instead of the filesystem encoding. Use the same choice than the zipfile module.
-
Hirokazu Yamamoto yazdı
fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath)
-
Victor Stinner yazdı
... instead of a char*. Encode the module path to the fileystem encoding (for PyImport_ExecCodeModuleEx) instead of utf-8.
-
Victor Stinner yazdı
PyImport_AddModule() returns a borrowed reference. Don't display "import ... # loaded from Zip ..." on error.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
R. David Murray yazdı
Patch by Sébastien Sablé. This solves a test_mmap failure on AIX.
-
R. David Murray yazdı
Patch from ActiveState.
-
- 17 Eki, 2010 9 kayıt (commit)
-
-
R. David Murray yazdı
-
R. David Murray yazdı
Patch and tests by Neil Muller.
-
Skip Montanaro yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
And not the locale encoding. With this commit, the test finally pass on Windows with a non-ascii path :-)
-
Victor Stinner yazdı
encodable to utf-8, not to the file1 encoding.
-