- 12 Apr, 2013 2 commits
-
-
Roger Serwy authored
-
Roger Serwy authored
-
- 11 Apr, 2013 17 commits
-
-
R David Murray authored
Patch by Zachary Ware.
-
Victor Stinner authored
-
Victor Stinner authored
the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function.
-
Victor Stinner authored
display invalid strings. Such strings can be found while Python is creating a new string, in a text decoder for example, when Python is compiled in debug mode.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Fix a crash when setting a servername callback on a SSL server socket and the client doesn't send a server name. Patch by Kazuhiro Yoshida. (originally issue #8109)
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Georg Brandl authored
-
R David Murray authored
-
R David Murray authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
#5609 - test_urllib coverage for url2pathname and pathname2url. Patch contribution by Thomas Fenzl & Maksim Kozyarchuk
-
Senthil Kumaran authored
contribution by Thomas Fenzl & Maksim Kozyarchuk
-
- 10 Apr, 2013 9 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
R David Murray authored
Patch by Claudiu Popa.
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Giampaolo Rodola' authored
-
- 09 Apr, 2013 12 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
strings are not convincing. For UCS2 (16-bit wchar_t type), use a dummy loop instead of wmemcmp(). The dummy loop is as fast, or a little bit faster. wchar_t is only 16-bit long on Windows. wmemcmp() is still used for 32-bit wchar_t.
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
the default exception/value when called instead of raising/returning NotimplementedError/NotImplemented (except where appropriate). This should allow for the ABCs to act as the bottom/end of the MRO with expected default results. As part of this work, also make importlib.abc.Loader.module_repr() optional instead of an abstractmethod.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
PyUnicode_WRITE() expands some parameters twice or more.
-
Victor Stinner authored
it twice
-
Victor Stinner authored
Inline the BLOOM_MEMBER() to only call PyUnicode_READ() only once (per loop iteration). Store also the length of the seperator in a variable to avoid calls to PyUnicode_GET_LENGTH().
-
Victor Stinner authored
Avoid expensive PyUnicode_READ() and PyUnicode_WRITE(), manipulate pointers instead.
-
Victor Stinner authored
Write specialized functions per Unicode kind to avoid the expensive PyUnicode_READ() macro.
-