summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Fix 'gather' rules in the python parser generator (GH-22021)Pablo Galindo2020-09-031-1/+15
* bpo-39010: Improve test shutdown (#22066)Ben Darnell2020-09-031-3/+11
* bpo-41696: Fix handling of debug mode in asyncio.run (#22069)Shantanu2020-09-031-0/+3
* closes bpo-41689: Preserve text signature from tp_doc in C heap type creation...Benjamin Peterson2020-09-021-0/+4
* Fixed mistake in test for f-string error description (GH-22036) (GH-22059)han-solo2020-09-022-2/+2
* bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)Pablo Galindo2020-09-011-0/+31
* bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` i...han-solo2020-09-012-0/+40
* bpo-39010: Fix errors logged on proactor loop restart (#22017)Ben Darnell2020-08-312-0/+21
* bpo-41344: Raise ValueError when creating shared memory of size 0 (GH-21556)Vinay Sharma2020-08-301-0/+12
* bpo-39994: Fix pprint handling of dict subclasses that override __repr__ (GH-...Irit Katriel2020-08-301-1/+48
* bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935)Irit Katriel2020-08-271-0/+41
* bpo-33660: Fix PosixPath to resolve a relative path on rootDong-hee Na2020-08-271-0/+9
* bpo-37658: Fix asyncio.wait_for() to respect waited task status (#21894)Elvis Pranskevichus2020-08-261-0/+16
* bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895)Elvis Pranskevichus2020-08-261-0/+31
* bpo-41521: Rename blacklist parameter to not_exported (GH-21824)Victor Stinner2020-08-1718-92/+91
* bpo-41503: Fix race between setTarget and flush in logging.handlers.MemoryHan...Irit Katriel2020-08-161-0/+21
* bpo-41513: Improve speed and accuracy of math.hypot() (GH-21803)Raymond Hettinger2020-08-161-3/+4
* bpo-41540: AIX: skip test that is flaky with a default ulimit. (#21890)Stefan Krah2020-08-151-0/+3
* bpo-41025: Fix subclassing for zoneinfo.ZoneInfo (GH-20965)Paul Ganssle2020-08-141-2/+2
* bpo-41521: Replace denylist with blocklist is http.cookiejar doc (GH-21826)Victor Stinner2020-08-131-3/+3
* bpo-41520: Fix second codeop regression (GH-21848)Terry Jan Reedy2020-08-131-5/+8
* bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...Pablo Galindo2020-08-131-0/+10
* bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)Victor Stinner2020-08-121-0/+7
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21823)Victor Stinner2020-08-112-5/+5
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-116-20/+20
* bpo-40275: Fix failed test cases by using test helpers (GH-21811)Hai Shi2020-08-104-9/+9
* bpo-16995: add support for base32 extended hex (base32hex) (GH-20441)Filipe LaĆ­ns2020-08-101-0/+70
* bpo-41324 Add a minimal decimal capsule API (#21519)Stefan Krah2020-08-101-0/+176
* bpo-35018: Sax parser should provide user access to lexical handlers (GH-20958)Zackery Spytz2020-08-091-2/+155
* bpo-40275: Use new test.support helper submodules in tests (GH-21785)Hai Shi2020-08-084-16/+17
* bpo-40275: Remove test helpers aliases in test.support (GH-21771)Hai Shi2020-08-083-22/+8
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-077-17/+26
* bpo-41473: Skip test_gdb with gdb 9.2 to work around gdb bug (GH-21768)Victor Stinner2020-08-071-0/+5
* bpo-41477: Make ctypes optional in test_genericalias (GH-21766)Victor Stinner2020-08-071-38/+42
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-0713-82/+93
* bpo-41371: Handle lzma lib import error in test_zoneinfo.py (GH-21734)Nathan M2020-08-061-1/+2
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-0618-50/+65
* bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)Batuhan Taskaya2020-08-051-0/+11
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-0419-46/+58
* bpo-40275: Use new test.support helper submodules in tests (GH-21452)Hai Shi2020-08-046-54/+62
* bpo-36982: Add support for extended color functions in ncurses 6.1 (GH-17536)Hans Petter Jansson2020-08-041-1/+15
* bpo-41431: Optimize dict_merge for copy (GH-21674)Inada Naoki2020-08-041-5/+6
* bpo-38912: regrtest logs unraisable exception into sys.__stderr__ (GH-21718)Victor Stinner2020-08-032-5/+15
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-0320-154/+185
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-0320-278/+324
* bpo-40275: Use new test.support helper submodules in tests (GH-21449)Hai Shi2020-08-0318-127/+148
* bpo-40360: Handle PendingDeprecationWarning in test_lib2to3. (GH-21694)Karthikeyan Singaravelan2020-07-311-1/+4
* bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)Mark Shannon2020-07-303-9/+5
* bpo-41401: Fix test_fspath_support in test_io. (GH-21640)Serhiy Storchaka2020-07-271-1/+1
* bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)pxinwr2020-07-271-0/+2