- 21 Eki, 2010 11 kayıt (commit)
-
-
Georg Brandl yazdı
-
Brian Curtin yazdı
-
Brian Curtin yazdı
unreadable by all users, e.g., Flash, Silverlight, and Java keys were causing errors. We don't currently have a way to grant/deny permissions for a key via winreg so there are no tests for this.
-
Georg Brandl yazdı
-
Antoine Pitrou yazdı
They can be retrieved through a new attribute `sys._xoptions`.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
#9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C file reindenting, and docs whitespace fixing.
-
Georg Brandl yazdı
-
- 20 Eki, 2010 11 kayıt (commit)
-
-
Victor Stinner yazdı
the locale encoding. If the LANG (and LC_ALL and LC_CTYPE) environment variable is not set, the locale encoding is ISO-8859-1, whereas most programs (including Python) expect UTF-8. Python already uses UTF-8 for the filesystem encoding and to encode command line arguments on this OS.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
The test failed with python -bb.
-
Benjamin Peterson yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Ronald Oussoren yazdı
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 yazdı
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 yazdı
-
Georg Brandl yazdı
-
- 19 Eki, 2010 11 kayıt (commit)
-
-
R. David Murray yazdı
-
Vinay Sajip yazdı
-
Alexander Belopolsky yazdı
reported by Terry J. Reedy.
-
Georg Brandl yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
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 7 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().
-