summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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
* [3.6] bpo-28556: Routine updates to typing (GH-1366) (#1416)Mariatta2017-05-031-5/+46
* regrtest: always show before/after of modified env (#1192) (#1406)Victor Stinner2017-05-031-3/+2
* Backport bpo-30205 to 3.6 (#1403)Antoine Pitrou2017-05-021-0/+4
* bpo-30199: test_ssl closes all asyncore channels (#1381) (#1390)Victor Stinner2017-05-021-1/+3
* bpo-30108: Restore sys.path in test_site (#1197) (#1378)Victor Stinner2017-05-021-8/+21
* [3.6] bpo-30197: Enhance functions swap_attr() and swap_item() in test.suppor...Serhiy Storchaka2017-04-283-13/+37
* bpo-30125: disable faulthandler in ctypes test_SEH (#1237) (#1343)Victor Stinner2017-04-281-0/+16
* bpo-30131: test_logging now joins queue threads (#1298) (#1317)Victor Stinner2017-04-281-0/+8
* [3.6] bpo-30106: Fix test_asyncore.test_quick_connect() (#1336)Victor Stinner2017-04-281-40/+40
* bpo-30107: Make SuppressCrashReport quiet on macOS (#1279) (#1335)Victor Stinner2017-04-281-4/+9
* bpo-30175: Skip client cert tests of test_imaplib (#1320) (#1323)Victor Stinner2017-04-272-1/+12
* bpo-30125: Fix faulthandler.disable() on Windows (#1243)Victor Stinner2017-04-211-0/+12
* bpo-30107: don't dump core on expected test_io crash (#1235) (#1241)Victor Stinner2017-04-211-0/+5