summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* [3.6] bpo-30899: Add unittests, 100% coverage, for IDLE's two ConfigParser su...terryjreedy2017-07-121-0/+1
* [3.6] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-...Serhiy Storchaka2017-07-112-3/+27
* [3.6] bpo-29854: Fix segfault in call_readline() (GH-728)Nir Soffer2017-07-081-3/+47
* bpo-30532: Fix whitespace folding in certain cases (#2591)Joel Hillacre2017-07-061-0/+12
* [3.6] bpo-30814: Fixed a race condition when import a submodule from a packag...Serhiy Storchaka2017-07-063-0/+30
* [3.6] bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_call...Yury Selivanov2017-07-051-1/+23
* [3.6] bpo-30441: Fix bug when modifying os.environ while iterating over it (G...Serhiy Storchaka2017-07-041-0/+24
* bpo-30764: Fix regrtest --fail-env-changed --forever (#2536) (#2539)Victor Stinner2017-07-031-1/+3
* [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)Nick Coghlan2017-07-031-0/+28
* [3.6] bpo-30703: Improve signal delivery (GH-2415) (#2527)Antoine Pitrou2017-07-011-1/+132
* [3.6] bpo-29512, bpo-30776: Backport regrtest enhancements from master to 3.6...Victor Stinner2017-06-302-10/+170
* bpo-30280: Cleanup threads in ayncio tests (#2501) (#2511)Victor Stinner2017-06-301-5/+3
* bpo-30812: Fix test_warnings, restore _showwarnmsg (#2504) (#2507)Victor Stinner2017-06-301-4/+9
* [3.6] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493...Antoine Pitrou2017-06-301-0/+9
* [3.6] Clear potential ref cycle between Process and Process target (GH-2470) ...Antoine Pitrou2017-06-281-0/+18
* [3.6] bpo-30775: Fix refleaks in test_multiprocessing (GH-2467) (#2468)Antoine Pitrou2017-06-281-2/+17
* [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302)...Serhiy Storchaka2017-06-287-1/+33
* [3.6] bpo-30523, bpo-30764, bpo-30776: Sync regrtest from master (#2441)Victor Stinner2017-06-275-49/+140
* bpo-30764: test_subprocess uses SuppressCrashReport (#2405) (#2410)Victor Stinner2017-06-261-26/+25
* [3.6] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-252-0/+91
* [3.6] bpo-30616: Functional API of enum allows to create empty enums. (#2304)...Dong-hee Na2017-06-241-0/+20
* [3.6] bpo-30730: Prevent environment variables injection in subprocess on Win...Serhiy Storchaka2017-06-231-0/+40
* bpo-30604: Skip CoExtra tests if ctypes is missing (#2356) (#2358)Victor Stinner2017-06-231-3/+6
* [3.6] bpo-30727: Fix a race condition in test_threading. (GH-2334) (#2351)Serhiy Storchaka2017-06-231-5/+14
* [3.6] bpo-29755: Fixed the lgettext() family of functions in the gettext modu...Serhiy Storchaka2017-06-201-9/+123
* bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289)Victor Stinner2017-06-201-12/+39
* bpo-29887: test_normalization handles PermissionError (#1196) (#2275)Victor Stinner2017-06-191-0/+3
* [3.6] bpo-29887: Test normalization now fails if download fails (GH-905) (#2271)Mariatta2017-06-191-4/+9
* [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