- 0831382 Issue #15006: Allow equality comparison between naive and aware time by Alexander Belopolsky · 13 years ago
- ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 13 years ago
- 0450c9e Issue #13959: Add to imp.find_module() and load_module's docstrings by Brett Cannon · 13 years ago
- 47b3239 Closes issue #14982: Document that pkgutil's walk_packages() and by Brett Cannon · 13 years ago
- 24aa693 Merge by Brett Cannon · 13 years ago
- 016ef55 Removed redundant code by Alexander Belopolsky · 13 years ago
- 9125775 Fix _TestListener.ALLOWED_TYPES and add sanity check by Richard Oudkerk · 13 years ago
- c909296 Mention the UTF-16 encoding speedup in the whatsnew (issue #15026). by Antoine Pitrou · 13 years ago
- 27f6a3b Issue #15026: utf-16 encoding is now significantly faster (up to 10x). by Antoine Pitrou · 13 years ago
- 3049f12 Increase timeout used when waiting for manager to shutdown cleanly by Richard Oudkerk · 13 years ago
- 0f52346 Fix for 2d2f206d040e so that test_multiprocessing does not depend on ctypes by Richard Oudkerk · 13 years ago
- a717d56 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 13 years ago
- 02653f1 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 13 years ago
- 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 13 years ago
- a6bc4b4 Issue #14933: fix misleading doc about weakref support in extension types. by Antoine Pitrou · 13 years ago
- 1377522 Issue #14933: fix misleading doc about weakref support in extension types. by Antoine Pitrou · 13 years ago
- 96f806b Fix typos in NEWS entry by Nick Coghlan · 13 years ago
- 807770e Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting comparison function in hmac by Nick Coghlan · 13 years ago
- 307693a Skip XincludeTest entirely instead of just ignoring failures, because it may segfault, depending on the order of running tests by Eli Bendersky · 13 years ago
- 27cbb19 Removed _SimpleElementPath and its flaky test. The test monkey-patches the module, which causes other failures and fails itself depending on the order tests are run. by Eli Bendersky · 13 years ago
- 175fada mark problematic test as expected failure - investigating by Eli Bendersky · 13 years ago
- 113da64 Fix windows compilation problems caused by previous commit. by Eli Bendersky · 13 years ago
- 64d11e6 Replace the iter/itertext methods of Element in _elementtree with true C implementations, instead of the bootstrapped Python code. In addition to being cleaner (removing the last remains of the bootstrapping code in _elementtree), this gives a 10x performance boost for iter() on large documents. by Eli Bendersky · 13 years ago
- fedb04a Update .hgignore for VS9.0-generated files by Antoine Pitrou · 13 years ago
- 58440c9 Issue #15070: fix VS9.0 build regression by Antoine Pitrou · 13 years ago
- 73d9a29 Issue #13841: Make child processes exit using sys.exit() on Windows by Richard Oudkerk · 13 years ago
- bc07cb8 Issue #14936: curses_panel was converted to PEP 3121 and PEP 384 API. by Martin v. Löwis · 13 years ago
- c838ec1 Issue #14936: curses_panel was converted to PEP 3121 API. by Martin v. Löwis · 13 years ago
- 474eb23 merge 3.2 by Martin v. Löwis · 13 years ago
- 993fe3f Issue #14937: Fix typo. Patch by Roger Serwy. by Martin v. Löwis · 13 years ago
- c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 13 years ago
- f6a899f Issue #15060: merge with 3.2 by Sandro Tosi · 13 years ago
- 27b130e Issue #15060: better fix, thanks to review on #python-dev by Sandro Tosi · 13 years ago
- 9994b09 Issue #15060: merge with 3.2 by Sandro Tosi · 13 years ago
- 56692f5 Issue #15060: fix typo in socket doc; Patch by anatoly techtonik by Sandro Tosi · 13 years ago
- 6222d76 Fix test_time for adjusted/adjustable changes by Victor Stinner · 13 years ago
- 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 13 years ago
- bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 13 years ago
- d973824 Fixed a typo in time_localtime() by Alexander Belopolsky · 13 years ago
- b783293 1) Fix signature of _mpd_qpow_uint(): contrary to the comment base is constant. by Stefan Krah · 13 years ago
- f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 13 years ago
- 99d776f Update importlib.h by touching Lib/importlib/_bootstrap.py. by Brett Cannon · 13 years ago
- 7b383c4 Make a test easier to read. by Brett Cannon · 13 years ago
- 839a482 Dummy merge by Richard Oudkerk · 13 years ago
- 197651b Issue #10133: Make multiprocessing deallocate buffer if socket read fails. by Richard Oudkerk · 13 years ago
- 4fae8cd Close #13857: Added textwrap.indent() function (initial patch by Ezra Berch) by Nick Coghlan · 13 years ago
- 3c4acd8 merge by Raymond Hettinger · 13 years ago
- 6fed9fd Fix indentation of method and attribute examples. by Raymond Hettinger · 13 years ago
- 88e1977 1) Replace long-winded abort() construct by assert(). by Stefan Krah · 13 years ago
- a26ad5a #15015: Fix accessing an non-existing attribute. by Brian Quinlan · 13 years ago
- 911fd32 unittest.mock minor doc update by Michael Foord · 13 years ago
- f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 13 years ago
- bfcb429 Expand examples for ChainMap(). Improve markup. by Raymond Hettinger · 13 years ago
- 9253862 1) State restrictions for the transform length. by Stefan Krah · 13 years ago
- 1c2018c Small cleanup and optimization by Raymond Hettinger · 13 years ago
- 7929cfb Note that the _asdict() method is outdated by Raymond Hettinger · 13 years ago
- 80ed4d4 Minor reformatting (wrap fat lines, etc.) and create an __main__ file by Raymond Hettinger · 13 years ago
- 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 13 years ago
- afc0c77 Add one extra comparison to the _mpd_shortmul() case to avoid repetitive code. by Stefan Krah · 13 years ago
- 6e50b69 Now that Defects are Exception subclasses, call super. by R David Murray · 13 years ago
- 5248a2d Enumerate all cases in the overflow detection strategy in mpd_qlog10(). by Stefan Krah · 13 years ago
- f6f5618 Relax datetime.timestamp() test around DST change by Alexander Belopolsky · 13 years ago
- 0c687e5 Relax datetime.timestamp() test around DST change by Alexander Belopolsky · 13 years ago
- 0bf506c Merge. by Stefan Krah · 13 years ago
- 1cf6dfc 1) List relative error for _mpd_qln10(). by Stefan Krah · 13 years ago
- a441514 Issue #2736: Added datetime.timestamp() method. by Alexander Belopolsky · 13 years ago
- ed36b2e #14814: Remove redundant code from ipaddress.IPv6Network by Hynek Schlawack · 13 years ago
- 571ee57 Merge from 3.2, #12510 by Terry Jan Reedy · 13 years ago
- 2a2ce4f Issue #12510: Revise and triple # of calltip tests, with an eye to unittest by Terry Jan Reedy · 13 years ago
- 58ba47f Merge fixes for #13854 and #12157. by Richard Oudkerk · 13 years ago
- 7448220 Issue #11823: disassembly now shows argument counts on calls with keyword args by Alexander Belopolsky · 13 years ago
- 7bda265 1) The overflow detection in mpd_qln() has a surprising number of case splits. by Stefan Krah · 13 years ago
- cbc203e Merge from 3.2 by Nick Coghlan · 13 years ago
- a3a164a Nudge readers towards a more accurate mental model for loop else clauses by Nick Coghlan · 13 years ago
- 55e5dc8 Rearrange code to beat an optimizer bug affecting Release x64 on windows by Kristján Valur Jónsson · 13 years ago
- 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 13 years ago
- e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 13 years ago
- a3394bc 1) Add error analysis comments to mpd_qln10() and _mpd_qln(). by Stefan Krah · 13 years ago
- a01f1ad Close #6203: Document that Python 3 sets LC_CTYPE at startup to the user's preferred locale encoding by Victor Stinner · 13 years ago
- 187aa54 Signal condition variables with the mutex held. Destroy condition variables by Kristján Valur Jónsson · 13 years ago
- 902274e Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. by Gregory P. Smith · 13 years ago
- 58f07a9 Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. by Gregory P. Smith · 13 years ago
- 9844993 Add test for multiprocessing.Conditon.wait() and changset 3baeb5e13dd2 by Richard Oudkerk · 13 years ago
- f86a5e8 Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore by Victor Stinner · 13 years ago
- 91c5a34 #14814: ipaddress: refactor dup code, minor janitoring, bump coverage by Hynek Schlawack · 13 years ago
- 034d0aa Issue #14711: os.stat_float_times() has been deprecated. by Victor Stinner · 13 years ago
- e860404 Add a function lzma.open(), to match gzip.open() and bz2.open(). by Nadeem Vawda · 13 years ago
- 6cbb20c Allow LZMAFile to accept modes with a "b" suffix. by Nadeem Vawda · 13 years ago
- 33c34da Simplify usage of LZMAFile's fileobj support, like with BZ2File. by Nadeem Vawda · 13 years ago
- af518c1 Add a function bz2.open(), to match gzip.open(). by Nadeem Vawda · 13 years ago
- 50cb936 Clarify acceptable values for BZ2File.__init__'s mode argument. by Nadeem Vawda · 13 years ago
- aebcdba Make BZ2File's fileobj support easier to use. by Nadeem Vawda · 13 years ago
- 6872101 Add fileobj support to gzip.open(). by Nadeem Vawda · 13 years ago
- d7b7c74 Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfield by Victor Stinner · 13 years ago
- 05cab75 #8739: fix omission of DEBUGSTREAM reset in new test in test_smtpd. by R David Murray · 13 years ago
- bd7b5dd Prevent handle leak if CreateProcess() fails in multiprocessing by Richard Oudkerk · 13 years ago
- 86eb7e9 Fix potential NameError in multiprocessing.Condition.wait() by Richard Oudkerk · 13 years ago
- ad06444 Make Finalize reserve a reference to os.getpid in case called at shutdown by Richard Oudkerk · 13 years ago
- 9650d36 Add namespaceobject.h and namespaceobject.c to pythoncore.vcxproj by Richard Oudkerk · 13 years ago
- 454a74d #14814: Remove dead code from ipaddress by Hynek Schlawack · 13 years ago