- 03 Eki, 2010 6 kayıt (commit)
-
-
Gerhard Häring yazdı
-
Senthil Kumaran yazdı
Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are explicitly cast to str (bytes - in py3k).
-
Senthil Kumaran yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Benjamin Peterson yazdı
-
- 02 Eki, 2010 12 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
R. David Murray yazdı
Also made the doc string for email._parseaddr's 'quote' function more accurate; I'd love to make the function match the old docstring instead, but other code uses it according the existing semantics.
-
R. David Murray yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* test_aswidechar() => unicode_aswidechar() * test_aswidecharstring() => unicode_aswidecharstring()
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE and 32 bits wchar_t (eg. Linux in narrow build).
-
Victor Stinner yazdı
And write unit tests for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString().
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Benjamin Peterson yazdı
-
- 01 Eki, 2010 8 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
R. David Murray yazdı
-
R. David Murray yazdı
Bug report and fix by Thomas Guettler.
-
Brian Curtin yazdı
This fixes a regression noticed by bzr, introduced by issue #9324.
-
Alexander Belopolsky yazdı
before passing it to the system asctime. Patch by MunSic Jeong.
-
Hirokazu Yamamoto yazdı
-
Georg Brandl yazdı
-
R. David Murray yazdı
-
- 30 Eyl, 2010 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 29 Eyl, 2010 13 kayıt (commit)
-
-
Brian Curtin yazdı
-
Mark Dickinson yazdı
Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10.
-
Mark Dickinson yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
And the codec name is normalized.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Redecode the filenames of: - all modules: __file__ and __path__ attributes - all code objects: co_filename attribute - sys.path - sys.meta_path - sys.executable - sys.path_importer_cache (keys) Keep weak references to all code objects until initfsencoding() is called, to be able to redecode co_filename attribute of all code objects.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added.
-
Brian Curtin yazdı
r85073 changed the importing in wintypes to not use *, so the previous usage here became even more incorrect.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-