- 11 Apr, 2013 11 commits
-
-
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 20 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.
-
Victor Stinner authored
"PyUnicode_READ_CHAR() is less efficient than PyUnicode_READ() because it calls PyUnicode_KIND() and might call it twice." according to its documentation.
-
Victor Stinner authored
cp037, cp500 and iso8859_1 codecs
-
Giampaolo Rodola' authored
-
Giampaolo Rodola' authored
>>> import asyncore >>> d = asyncore.dispatcher() >>> d.close() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python3.4/asyncore.py", line 401, in close self.socket.close() AttributeError: 'NoneType' object has no attribute 'close' >>>
-
Senthil Kumaran authored
usage of get_origin_req_host() to origin_req_host. Patch by Wei-Cheng Pan
-
Senthil Kumaran authored
of get_origin_req_host() to origin_req_host. Patch by Wei-Cheng Pan
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-