- 2fa2281 (bug #8684) fix 'fedora without thread buildbot' as per http://bugs.python.org/issue8684 by Giampaolo Rodola' · 13 years ago
- 2b1cc89 _Py_fopen now allows bytes filenames under non-Windows platforms. by Antoine Pitrou · 13 years ago
- 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 13 years ago
- d130195 Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
- 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
- b01c32d Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
- 4ce2f36 Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
- d974393 (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames in by Victor Stinner · 13 years ago
- d208416 Issue #13628: python-gdb.py is now able to retrieve more frames in the Python by Victor Stinner · 13 years ago
- 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
- bfaa79a Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
- 78ed83d Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
- ca9afca #13576: merge with 3.2. by Ezio Melotti · 13 years ago
- 62f3d03 #13576: add tests about the handling of (possibly broken) condcoms. by Ezio Melotti · 13 years ago
- 5ce6f8e #13387: merge with 3.2. by Ezio Melotti · 13 years ago
- 80a61e8 #13387: rephrase unclear sentence. by Ezio Melotti · 13 years ago
- a699a2d Merge 3.2 by Michael Foord · 13 years ago
- a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
- 8f23be7 iobench.py: add more info in the header by Victor Stinner · 13 years ago
- 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
- bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
- bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
- 7bfe899 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
- 165b128 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
- 83250bb Merge by Antoine Pitrou · 13 years ago
- f928b5d Merge with 3.2. by Georg Brandl · 13 years ago
- 92ed387 Merge by Antoine Pitrou · 13 years ago
- 0d81c13 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
- ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
- 92d4acb Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
- a742526 Merge by Antoine Pitrou · 13 years ago
- 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
- 6fbd525 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
- 0f694d7 Merge by Antoine Pitrou · 13 years ago
- fb0901c In the test SSL server, also output the cipher name by Antoine Pitrou · 13 years ago
- dec36b6 Null merge. by Charles-François Natali · 13 years ago
- b055bf6 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
- 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
- 3c4dcea Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
- cf53ae2 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
- 6099a03 Issue #13624: Write a specialized UTF-8 encoder to allow more optimization by Victor Stinner · 13 years ago
- b66dcb6 Null merge by Antoine Pitrou · 13 years ago
- 73f53b5 Optimize str * n for len(str)==1 and UCS-2 or UCS-4 by Victor Stinner · 13 years ago
- a94a0e9 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 13 years ago
- b99bb20 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 13 years ago
- f644110 Issue #13621: Optimize str.replace(char1, char2) by Victor Stinner · 13 years ago
- b511aca Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 13 years ago
- 07b1c87 Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 13 years ago
- f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 13 years ago
- e010fc0 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
- bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
- 25ec056 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
- e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
- bb305de Merge by Victor Stinner · 13 years ago
- ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 13 years ago
- 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
- 0ba5af2 Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
- e85488c Mention that level can be an int or str in the setLevel docstring. by Gregory P. Smith · 13 years ago
- 564a42c Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael by Charles-François Natali · 13 years ago
- f2fe7f0 fix possible NULL dereference by Benjamin Peterson · 13 years ago
- 2f19707 The locale decoder raises a UnicodeDecodeError instead of an OSError by Victor Stinner · 13 years ago
- 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
- ab59594 What's New in Python 3.3: complete the deprecation list by Victor Stinner · 13 years ago
- 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 13 years ago
- f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
- 9987d93 #13613: merge with 3.2. by Ezio Melotti · 13 years ago
- e5b2ac8 #13613: fix example in re doc. by Ezio Melotti · 13 years ago
- af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
- 3607e3d (Merge 3.2) main() now displays an error message before exiting if a command by Victor Stinner · 13 years ago
- 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
- 1637487 Skip test if the path is too long for a AF_UNIX socket by Antoine Pitrou · 13 years ago
- 6ec29e2 Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem by Antoine Pitrou · 13 years ago
- ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- e2b2bf5 Add ACKS entry for 57f0af61da53. by Antoine Pitrou · 13 years ago
- 093ce9c Issue #6695: Full garbage collection runs now clear the freelist of set objects. by Antoine Pitrou · 13 years ago
- c144a93 property -> staticmethod by Benjamin Peterson · 13 years ago
- 518e517 merge heads by Benjamin Peterson · 13 years ago
- ca81bf7 fix this test to actually test something (closes #13606) by Benjamin Peterson · 13 years ago
- e0a669e Close #13596: Only recompile Lib/_sysconfigdata.py when needed by Victor Stinner · 13 years ago
- 57c9c7b merge heads by Benjamin Peterson · 13 years ago
- b3132bd input() in this sense is gone by Benjamin Peterson · 13 years ago
- 9c49036 (Merge 3.2) Issue #13545: Fix platform.libc_version() is the SO version is missing by Victor Stinner · 13 years ago
- 8744881 Issue #13545: Fix platform.libc_version() is the SO version is missing by Victor Stinner · 13 years ago
- bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
- a8ff01c Issue #13597: Improve documentation of standard streams. by Antoine Pitrou · 13 years ago
- 7158e06 Issue #13597: Improve documentation of standard streams. by Antoine Pitrou · 13 years ago
- e0e2735 Fix OSError.__init__ and OSError.__new__ so that each of them can be by Antoine Pitrou · 13 years ago
- d73a9ac Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
- 2e87208 Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
- 96ff084 Issue #13593: updating the importlib utility decorators for __qualname__. by Meador Inge · 13 years ago
- c2f9874 Issue #13591: Moving the NEWS line to the right release. by Meador Inge · 13 years ago
- b7288a7 Issue #13591: Moving the NEWS line to the right release. by Meador Inge · 13 years ago
- d7afeee Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
- 416f12d Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
- abbcd08 Issue #4625: Add NEWS entry. by Ned Deily · 13 years ago
- 061c028 Issue #4625: add NEWS entry. by Ned Deily · 13 years ago
- 1b0b6ae Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
- f505b74 Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
- 77e1bfc Issue #13453: Fix a race condition in test_poplib. by Charles-François Natali · 13 years ago