- b6b6a6d Issue #20939: merge from 3.3 by Ned Deily · 11 years ago
- 10b93cc merge 3.3 (#20896) by Benjamin Peterson · 11 years ago
- 62b4b9e Close #20839: pkgutil.find_loader now uses importlib.util.find_spec by Nick Coghlan · 11 years ago
- d930d85 Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ by Yury Selivanov · 11 years ago
- a46cf12 Close #20757: return success for skipped pip uninstall by Nick Coghlan · 11 years ago
- 26dd0ff Issue #20763: Fix importlib.machinery.PathFinder to support by Brett Cannon · 11 years ago
- d44cebb Issue #20599: Don't clear environment in test_cleanup() of test_builtin by Victor Stinner · 12 years ago
- 8ebe532 Issue #20599: Force ASCII encoding for stdout in test_cleanup() of test_builtin by Victor Stinner · 12 years ago
- f86b433 Try to fix test_cleanup (issue #20599). by Serhiy Storchaka · 12 years ago
- e0a976c Temporary silence test broken by issue19255. Remove unused variables. by Serhiy Storchaka · 12 years ago
- 013bb91 Issue #19255: The builtins module is restored to initial value before by Serhiy Storchaka · 12 years ago
- 9d4c5f4 Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. by Eric Snow · 11 years ago
- 8dfb457 inspect.signature: Check for function-like objects before builtins. Issue #17159 by Yury Selivanov · 11 years ago
- 13da6a1 Issue #20710: The pydoc summary line no longer displays the "self" parameter by Larry Hastings · 11 years ago
- d224b6a inspect: Fix getfullargspec to support builtin module-level functions. Issue #20711 by Yury Selivanov · 11 years ago
- 934c885 asyncio: _check_resolved_address() must also accept IPv6 without flow_info and by Victor Stinner · 11 years ago
- 6dcfec9 asyncio: ops, and now fix also the unit test for IPv6 address: by Victor Stinner · 11 years ago
- a96ed63 merge 3.3 (#20695) by Benjamin Peterson · 11 years ago
- 0f3e6bc asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 11 years ago
- ff385b8 inspect: Fix getfullargspec() to not to follow __wrapped__ chains by Yury Selivanov · 11 years ago
- eaeb623 Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my previous commit) by Victor Stinner · 11 years ago
- df90ae6 Close #20682: Fix UNIX sockets tests of test_asyncio on Mac OS X Tiger by Victor Stinner · 11 years ago
- 1589920 asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol by Yury Selivanov · 11 years ago
- 5779752 asyncio: pep8-ify the code. by Yury Selivanov · 12 years ago
- dec1a45 asyncio: Fix spelling and typos. by Yury Selivanov · 12 years ago
- 74d519f Issue #20682: test_asyncio, _basetest_create_connection() checks also the by Victor Stinner · 12 years ago
- 79a2952 asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and by Victor Stinner · 12 years ago
- 0ee29c2 asyncio, Tulip issue 139: Improve error messages on "fatal errors" by Victor Stinner · 12 years ago
- 569efa2 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 12 years ago
- dc87052 Close issue20653: allow Enum subclasses to override __reduce_ex__ by Ethan Furman · 12 years ago
- 026019f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 12 years ago
- b057c52 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 12 years ago
- 9a49c64 Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenBSD 5.5. by Victor Stinner · 12 years ago
- 3bc3aaa Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on by Victor Stinner · 12 years ago
- 79c3bcf Issue #20655: Fix test_asyncio, run also subprocess tests. Patch written by by Victor Stinner · 12 years ago
- a91ff14 Issue #20616: Add a format() method to tracemalloc.Traceback. by Victor Stinner · 12 years ago
- 34c1540 merge backout for #20621 by Benjamin Peterson · 12 years ago
- 2626fab look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 12 years ago
- c00fa63 Issue #19744: Handle missing SSL/TLS in ensurepip by Nick Coghlan · 12 years ago
- e84fde9 set line and column numbers for keyword-only arg nodes (closes #20619) by Benjamin Peterson · 12 years ago
- 933538e Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 12 years ago
- 4c07377 Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host by Victor Stinner · 12 years ago
- 1b0580b ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 12 years ago
- 2303fec asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue #20566. by Guido van Rossum · 12 years ago
- 9887fd7 Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than by Victor Stinner · 12 years ago
- 208556c asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if by Victor Stinner · 12 years ago
- 20e0743 asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shell by Victor Stinner · 12 years ago
- 9af4a24 asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(), by Victor Stinner · 12 years ago
- ed1654f Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if by Victor Stinner · 12 years ago
- b38b5c4 merge with 3.3 by Georg Brandl · 12 years ago
- 6093a12 Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the by Victor Stinner · 12 years ago
- 1c143b1 Issue #20505: Add debug info to analyze sporaric failures of by Victor Stinner · 12 years ago
- b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 12 years ago
- dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 12 years ago
- 3633ce3 Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. by Victor Stinner · 12 years ago
- 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 12 years ago
- 0c3949c asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent by Victor Stinner · 12 years ago
- 313f829 asyncio: Test fix. by Guido van Rossum · 12 years ago
- d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown by Nick Coghlan · 12 years ago
- 87bf277 asyncio tests: Remove scories of resolution/granularity by Victor Stinner · 12 years ago
- 66c3d18 Merge: #14983: always add a line end after a MIME boundary marker. by R David Murray · 12 years ago
- e9c3147 #14983: always add a line end after a MIME boundary marker. by R David Murray · 12 years ago
- ca1b794 Close issue20534: all pickle protocols now supported. by Ethan Furman · 12 years ago
- 01e46ee Merge: #16983: Apply postel's law to encoded words inside quoted strings. by R David Murray · 12 years ago
- 0400d33 #16983: Apply postel's law to encoded words inside quoted strings. by R David Murray · 12 years ago
- ff9616b Merge #19772: Do not mutate message when downcoding to 7bit. by R David Murray · 12 years ago
- 905c8c3 #19772: Do not mutate message when downcoding to 7bit. by R David Murray · 12 years ago
- 99b1f2b Issue #20553. Use specific asserts in ipaddress tests. by Serhiy Storchaka · 12 years ago
- 7c389e2 Issue #20553. Use specific asserts in ipaddress tests. by Serhiy Storchaka · 12 years ago
- 4a7668a Close #20536: correctly handle Decimal exponents in statistics by Nick Coghlan · 12 years ago
- aad0ea0 Merge fix for #18805 from 3.3 by Nick Coghlan · 12 years ago
- 932346f Issue #18805: better netmask validation in ipaddress by Nick Coghlan · 12 years ago
- 1ff23d7 Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. by Serhiy Storchaka · 12 years ago
- 578c677 Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. by Serhiy Storchaka · 12 years ago
- d3e1207 Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. by Serhiy Storchaka · 12 years ago
- 25d8aea Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. by Serhiy Storchaka · 12 years ago
- 6c9678e Issue #20546: Use specific asserts in int tests. by Serhiy Storchaka · 12 years ago
- 3a20a5d Issue #20546: Use specific asserts in int tests. by Serhiy Storchaka · 12 years ago
- 6cbf151 Issue #20538: UTF-7 incremental decoder produced inconsistant string when by Serhiy Storchaka · 12 years ago
- 016a3f3 Issue #20538: UTF-7 incremental decoder produced inconsistant string when by Serhiy Storchaka · 12 years ago
- 73afe2a Close #20481: Disallow mixed type input in statistics by Nick Coghlan · 12 years ago
- bfd68bf Issue #20478: avoid special casing Counter in statistics by Nick Coghlan · 12 years ago
- 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 12 years ago
- c489e83 Merge: #17369: Improve handling of broken RFC2231 values in get_filename. by R David Murray · 12 years ago
- 1e94989 #17369: Improve handling of broken RFC2231 values in get_filename. by R David Murray · 12 years ago
- 15a693a #20531: Apply the 3.3 version of the #19063 fix. by R David Murray · 12 years ago
- 27e9de6 #20531: Revert e20f98a8ed71, the 3.4 version of the #19063 fix. by R David Murray · 12 years ago
- aa21297 #20476: use EmailMessage as factory if non-compat32 policy is used. by R David Murray · 12 years ago
- 11c5afd Issue #20053: Mark as an expected failure for 3.4 by Nick Coghlan · 12 years ago
- 96252cd Issue 20542: Temporarily skip failing test by Nick Coghlan · 12 years ago
- d49fa5e Issue #20053: Actually test relevant assumption by Nick Coghlan · 12 years ago
- f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 12 years ago
- 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 12 years ago
- 622be34 asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines by Yury Selivanov · 12 years ago
- 2ddb39a Close issue20534: test_enum now tests all supported pickle protocols (2 - HIGHEST_PROTOCOL, inclusive). by Ethan Furman · 12 years ago
- fe4ef39 Silence BytesWarning (backport 267a4d4d9d65). by Serhiy Storchaka · 12 years ago
- a26b3f1 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 12 years ago
- bc27a05 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 12 years ago
- a146bef Catch deprecation warnings emitted when non-integers are formatted with %c, %o by Serhiy Storchaka · 12 years ago
- 94e44a9 Issue #14455: fix handling of unsigned long long values for binary plist files by Ronald Oussoren · 12 years ago