- 20 Oct, 2010 4 commits
-
-
Ronald Oussoren authored
Without this patch you'll get link errors in some extensions (in particular the _curses_panel) one when you try to build a 3-way universal framework when you previously installed a 2-way universal framework using the python.org installer.
-
Ronald Oussoren authored
Without this patch the i386/x86_64 installer for OSX 10.6 lies in the ReadMe file and the "Important Information" screen of the installer (that is, the installer claims it supports the i386 and ppc architectures insetead of the ones it really supports)
-
Vinay Sajip authored
-
Georg Brandl authored
-
- 19 Oct, 2010 11 commits
-
-
R. David Murray authored
-
Vinay Sajip authored
-
Alexander Belopolsky authored
reported by Terry J. Reedy.
-
Georg Brandl authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Georg Brandl authored
#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 authored
Thanks Boštjan Mejak for the patch.
-
Vinay Sajip authored
logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation.
-
Senthil Kumaran authored
-
Victor Stinner authored
Don't fallback to utf-8 anymore to avoid mojibake. I never got any error from his function.
-
- 18 Oct, 2010 25 commits
-
-
Victor Stinner authored
PyErr_Format() and PyUnicode_FromFormat() are able to allocate the right buffer size and to catch memory allocation failures.
-
Victor Stinner authored
-
Victor Stinner authored
UTF-8 is just fine for module names.
-
Victor Stinner authored
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 authored
It was not completly implemented. Add a test.
-
Victor Stinner authored
Use PyUnicode_FSConverter to support surrogates in the full name.
-
Victor Stinner authored
Don't hardcode path size in make_filename().
-
Barry Warsaw authored
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 authored
-
Alexander Belopolsky authored
use encoding other than ASCII or UTF-8. Source encoding is preserved when reindented code is written to a file.
-
Georg Brandl authored
-
Victor Stinner authored
instead of utf-8.
-
Victor Stinner authored
the unicode flag, to decode the filename, instead of the filesystem encoding. Use the same choice than the zipfile module.
-
Hirokazu Yamamoto authored
fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath)
-
Victor Stinner authored
... instead of a char*. Encode the module path to the fileystem encoding (for PyImport_ExecCodeModuleEx) instead of utf-8.
-
Victor Stinner authored
PyImport_AddModule() returns a borrowed reference. Don't display "import ... # loaded from Zip ..." on error.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
R. David Murray authored
Patch by Sébastien Sablé. This solves a test_mmap failure on AIX.
-