summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-38870: invalid escape sequence (GH-20240)Miss Islington (bot)2020-05-191-1/+1
* bpo-32309: Implement asyncio.to_thread() (GH-20143)Miss Islington (bot)2020-05-191-0/+79
* bpo-40275: More lazy imports in test.support (GH-20131)Hai Shi2020-05-1810-77/+81
* bpo-38870: Don't omit parenthesis when unparsing a slice in ast.unparseBatuhan Taskaya2020-05-181-1/+9
* bpo-40334: Reproduce error message for type comments on bare '*' in the new p...Lysandros Nikolaou2020-05-181-0/+10
* bpo-38870: correctly escape unprintable characters on ast.unparse (GH-20166)CyberSaxosTiGER2020-05-181-1/+5
* bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-...Batuhan Taskaya2020-05-181-0/+3
* bpo-40662: Fixed ast.get_source_segment for ast nodes that have incomplete lo...Irit Katriel2020-05-181-0/+11
* bpo-40661: Fix segfault when parsing invalid input (GH-20165)Lysandros Nikolaou2020-05-182-0/+4
* bpo-40257: Revert changes to inspect.getdoc() (GH-20073)Serhiy Storchaka2020-05-181-12/+3
* bpo-39148: fixup to account for IPV6_ENABLED being moved (GH-20170)Nathaniel J. Smith2020-05-181-1/+1
* bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)Kjell Braden2020-05-181-3/+12
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-181-22/+114
* bpo-40536: Add zoneinfo.available_timezones (GH-20158)Paul Ganssle2020-05-182-2/+138
* bpo-39058: Preserve attribute order in argparse Namespace reprs. (GH-17621)Raymond Hettinger2020-05-181-1/+1
* bpo-40645: Implement HMAC in C (GH-20129)Christian Heimes2020-05-171-72/+125
* bpo-35569: Expose RFC 3542 IPv6 socket options on macOS (GH-19526)Erlend Egeberg Aasland2020-05-171-0/+31
* bpo-29587: Add another test for the gen.throw() fix. (GH-19859)Chris Jerdonek2020-05-171-0/+22
* bpo-38870: Use subTest in test_unparse for better error reporting (GH-20141)Pablo Galindo2020-05-171-7/+11
* Use subTest in test_exceptions for better error reporting (GH-20140)Pablo Galindo2020-05-171-26/+29
* bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132)Christian Heimes2020-05-161-5/+16
* bpo-38870: Implement round tripping support for typed AST in ast.unparse (GH-...Batuhan Taskaya2020-05-161-2/+33
* bpo-38870: Correctly handle empty docstrings in ast.unparse (GH-18768)Batuhan Taskaya2020-05-161-2/+13
* bpo-40165: Suppress stderr when checking if test_stty_match should be skipped...Batuhan Taskaya2020-05-161-1/+5
* bpo-38870: Don't put unnecessary parentheses on class declarations in ast.par...Batuhan Taskaya2020-05-161-1/+14
* bpo-38870: Do not separate factor prefixes in ast.unparse (GH-20133)Batuhan Taskaya2020-05-161-1/+7
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-161-1/+17
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-161-13/+38
* bpo-39305: Update nntplib to merge nntplib.NNTP and nntplib._NNTPBase (GH-19817)Dong-hee Na2020-05-161-2/+14
* bpo-40275: lazy import modules in test.support (GH-20128)Hai Shi2020-05-161-4/+9
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-166-0/+2386
* bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...Zackery Spytz2020-05-161-3/+3
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-152-25/+162
* bpo-40636: Clarify the zip built-in docstring. (GH-20118)Gregory P. Smith2020-05-151-1/+2
* bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...romasku2020-05-151-4/+51
* bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)Guido van Rossum2020-05-152-9/+27
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-155-23/+31
* bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-141-1/+1
* bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-143-1/+41
* bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-141-0/+2
* Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-141-299/+2
* bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-141-3/+221
* bpo-40597: email: Use CTE if lines are longer than max_line_length consistent...Arkadiusz Hiler2020-05-141-0/+15
* bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)Chris Jerdonek2020-05-132-1/+45
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-131-9/+6
* bpo-40331: Increase test coverage for the statistics module (GH-19608)Tzanetos Balitsaris2020-05-131-0/+60
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-121-20/+7
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-121-0/+7
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-123-4/+9
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-121-4/+0