summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* [email] bpo-29478: Fix passing max_line_length=None from Compat32 policy (GH-...Mariatta2017-06-161-0/+7
* [3.6] bpo-30682: Removed a too-strict assertion that failed for certain f-str...Serhiy Storchaka2017-06-161-0/+6
* Synchronize libregrtest from master to 3.6 (#2244)Victor Stinner2017-06-167-58/+228
* bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1662)Dong-hee Na2017-06-151-0/+35
* [3.6] bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6...Serhiy Storchaka2017-06-151-8/+29
* [3.6] bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (GH-...Serhiy Storchaka2017-06-151-2/+14
* bpo-30231: Remove skipped test_imaplib tests (#1419) (#2192)Victor Stinner2017-06-141-20/+10
* [3.6] bpo-30649: test_os tolerates 50 ms delta for utime (#2156) (#2175)Victor Stinner2017-06-141-1/+6
* [3.6] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#...Antoine Pitrou2017-06-131-0/+63
* [3.6] bpo-29514: Check magic number for bugfix releases (#2157)Nick Coghlan2017-06-131-0/+44
* [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashe...Dino Viehland2017-06-131-3/+100
* [3.6] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) ...Serhiy Storchaka2017-06-121-0/+10
* Revert "[3.6] bpo-29406: asyncio SSL contexts leak sockets after calling clos...Yury Selivanov2017-06-111-34/+0
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. ...Yury Selivanov2017-06-112-0/+27
* bpo-28556: Updates to typing module (GH-2076) (GH-2087)Mariatta2017-06-101-3/+36
* [3.6] bpo-29406: asyncio SSL contexts leak sockets after calling close with c...Yury Selivanov2017-06-101-0/+34
* bpo-30266: support "= None" pattern in AbstractContextManager (GH-1448) (GH-2...Mariatta2017-06-101-0/+10
* Closing transport during handshake process leaks socket (#480) (#2044)Yury Selivanov2017-06-091-0/+15
* Fix waiter cancellation in asyncio.Lock (#1031) (#2037)Yury Selivanov2017-06-091-0/+22
* [3.6] bpo-30039: Don't run signal handlers while resuming a yield from stack ...Yury Selivanov2017-06-091-0/+29
* bpo-30524: Write unit tests for FASTCALL (#2022) (#2030)Victor Stinner2017-06-091-0/+176
* [3.6] bpo-30529: Fix errors for invalid whitespaces in f-string subexpression...Serhiy Storchaka2017-06-081-0/+10
* [3.6] bpo-30584: Fix test_os fails on non-English Windows (GH-1980) (#1999)Denis Osipov2017-06-081-1/+3
* bpo-30177: pathlib: include the full path in resolve(strict=False) (#1893) (#...Antoine Pietri2017-06-071-9/+12
* [3.6] bpo-29822: make inspect.isabstract() work during __init_subclass__ (#1979)Nate2017-06-071-0/+24
* bpo-29581: bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (GH-...Nate2017-06-071-0/+12
* [3.6] bpo-30557: faulthandler now correctly filters and displays exception â€...Steve Dower2017-06-061-0/+28
* [3.6] Fix skipping test_UNC_path on AppVeyor due to a different error being r...Zachary Ware2017-06-041-1/+1
* bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1...Xiang Zhang2017-06-011-2/+20
* [3.6] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1287)Mariatta2017-05-271-0/+5
* [3.6] bpo-30414: multiprocessing.Queue._feed do not break from main loop on e...Antoine Pitrou2017-05-251-0/+14
* [3.6] bpo-29104: Fixed parsing backslashes in f-strings. (GH-490) (#1812)Serhiy Storchaka2017-05-251-0/+14
* bpo-30003: Fix handling escape characters in HZ codec (#1556) (#1719)Xiang Zhang2017-05-221-0/+4
* [3.6] bpo-30415: Add new tests for the fnmatch module. (GH-1684) (#1694)Serhiy Storchaka2017-05-211-9/+55
* [3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1677)Serhiy Storchaka2017-05-201-0/+85
* [3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (...Serhiy Storchaka2017-05-201-0/+27
* bpo-27103: regrtest disables -W if -R is used (#1651) (#1656)Victor Stinner2017-05-181-0/+5
* bpo-30387: Fix warning in test_threading (#1634) (#1636)Victor Stinner2017-05-171-3/+5
* Remove unused variable in test_urllibnet. (#1598) (#1600)Senthil Kumaran2017-05-171-1/+3
* bpo-30301: Fix AttributeError when using SimpleQueue.empty() (#1601) (#1628)Xiang Zhang2017-05-171-0/+36
* bpo-30357: test_thread now uses threading_cleanup() (#1592) (#1622)Victor Stinner2017-05-171-0/+4
* [3.6] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595...Serhiy Storchaka2017-05-161-3/+14
* bpo-30110: fix resource leak in test_asyncio.test_events (#1413) (#1584)Xiang Zhang2017-05-151-1/+3
* [3.6] bpo-30345: Update test_gdb.py and python-gdb.py from master (#1549)Victor Stinner2017-05-121-2/+20
* bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1546)INADA Naoki2017-05-111-0/+18
* bpo-30320: test_eintr now uses pthread_sigmask() (#1523) (#1524)Victor Stinner2017-05-101-30/+26
* [3.6] bpo-30298: Weaken the condition of deprecation warnings for inline modi...Serhiy Storchaka2017-05-101-14/+45
* bpo-29990: Fix range checking in GB18030 decoder (#1495) (#1507)Xiang Zhang2017-05-091-0/+6
* bpo-30264: ExpatParser closes the source on error (#1451) (#1474)Victor Stinner2017-05-051-6/+18
* [3.6] bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (G...Serhiy Storchaka2017-05-041-18/+41