- 14 Aug, 2010 38 commits
-
-
Raymond Hettinger authored
-
Éric Araujo authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Store builtins in cell variables to speed-up the common path, reducing the chance of a lock needing to block at all.
-
Raymond Hettinger authored
-
Florent Xicluna authored
-
Florent Xicluna authored
-
Florent Xicluna authored
-
Victor Stinner authored
-
Florent Xicluna authored
-
Victor Stinner authored
Call _wfopen() on Windows, or fopen() otherwise. Return the new file object on success, or NULL if the file cannot be open or (if PyErr_Occurred()) on unicode error.
-
Florent Xicluna authored
-
Victor Stinner authored
-
Florent Xicluna authored
-
Giampaolo Rodolà authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
ssl.get_server_certificate()).
-
Antoine Pitrou authored
when the remote server doesn't answer.
-
Georg Brandl authored
-
Florent Xicluna authored
------------------------------------------------------------------------ r79925 | nick.coghlan | 2010-04-10 16:24:36 +0200 (sam. 10 avril 2010) Try to turn some buildbots green by allowing test_multiprocessing to pass even if it hits the sys.exc_clear code in the threading module, and improve the test coverage by making the ctypes dependencies a bit more granular (two of the cited ctypes objects don't exist on my system) ------------------------------------------------------------------------
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Victor Stinner authored
-
Victor Stinner authored
Use stat() or _wstat() depending on the OS.
-
Georg Brandl authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Victor Stinner authored
-
- 13 Aug, 2010 2 commits
-
-
Victor Stinner authored
It's a ParseTuple converter: decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is. * Don't specify surrogateescape error handler in the comments nor the documentation, but PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_EncodeFSDefault() because these functions use strict error handler for the mbcs encoding (on Windows). * Remove PyUnicode_FSConverter() comment in unicodeobject.c to avoid inconsistency with unicodeobject.h.
-
Victor Stinner authored
* Use _Py_wchar2char() in _wstat() and _Py_wfopen() * Document _Py_char2wchar()
-