- 03 Oct, 2010 5 commits
-
-
Senthil Kumaran authored
Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are explicitly cast to str (bytes - in py3k).
-
Senthil Kumaran authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Benjamin Peterson authored
-
- 02 Oct, 2010 12 commits
-
-
Benjamin Peterson authored
-
R. David Murray authored
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 authored
-
Victor Stinner authored
-
Victor Stinner authored
* test_aswidechar() => unicode_aswidechar() * test_aswidecharstring() => unicode_aswidecharstring()
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
And write unit tests for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString().
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Benjamin Peterson authored
-
- 01 Oct, 2010 8 commits
-
-
Amaury Forgeot d'Arc authored
-
R. David Murray authored
-
R. David Murray authored
Bug report and fix by Thomas Guettler.
-
Brian Curtin authored
This fixes a regression noticed by bzr, introduced by issue #9324.
-
Alexander Belopolsky authored
before passing it to the system asctime. Patch by MunSic Jeong.
-
Hirokazu Yamamoto authored
-
Georg Brandl authored
-
R. David Murray authored
-
- 30 Sep, 2010 1 commit
-
-
Senthil Kumaran authored
-
- 29 Sep, 2010 14 commits
-
-
Brian Curtin authored
-
Mark Dickinson authored
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 authored
-
Victor Stinner authored
-
Victor Stinner authored
And the codec name is normalized.
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added.
-
Brian Curtin authored
r85073 changed the importing in wintypes to not use *, so the previous usage here became even more incorrect.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Victor Stinner authored
* Convert unicode to wide character string before creating the PyCapsule object * Catch integer overflow * Avoid useless memset() * Prepare the support of surrogates
-