summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20...Lysandros Nikolaou2020-05-261-1/+13
* bpo-40246: Fix test_fstring when run with the old parser (GH-20402)Lysandros Nikolaou2020-05-261-1/+7
* bpo-23082: Better error message for PurePath.relative_to() from pathlib (GH-1...Miss Islington (bot)2020-05-251-1/+2
* bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)Miss Islington (bot)2020-05-251-1/+1
* bpo-40695: Limit hashlib builtin hash fallback (GH-20259)Miss Islington (bot)2020-05-251-2/+3
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Miss Islington (bot)2020-05-242-0/+16
* bpo-40443: Remove unused imports in the zoneinfo (GH-20354)Miss Islington (bot)2020-05-242-4/+0
* bpo-37309: Update IDLE NEWS.txt (GH-20356)Miss Islington (bot)2020-05-241-0/+1
* bpo-40723: Make IDLE autocomplete test run without __main__.__file__ (GH-20311)Miss Islington (bot)2020-05-242-1/+3
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Miss Islington (bot)2020-05-222-3/+62
* bpo-9216: hashlib usedforsecurity fixes (GH-20258)Miss Islington (bot)2020-05-225-34/+87
* Fix the URL to fishshell.com (GH-20251)Miss Islington (bot)2020-05-221-1/+1
* bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...Miss Islington (bot)2020-05-211-5/+3
* bpo-40715: Reject dict unpacking on dict comprehensions (GH-20292)Miss Islington (bot)2020-05-211-0/+5
* [3.9] bpo-40176: Improve error messages for trailing comma on from import (GH...Pablo Galindo2020-05-211-0/+8
* bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)Miss Islington (bot)2020-05-202-2/+20
* s/wakup/wakeup (GH-20250)Miss Islington (bot)2020-05-201-1/+1
* bpo-40698: Improve distutils upload hash digests (GH-20260)Miss Islington (bot)2020-05-202-5/+41
* 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-193-0/+102
* Python 3.9.0b1v3.9.0b1Ɓukasz Langa2020-05-191-1/+1
* bpo-40275: More lazy imports in test.support (GH-20131)Hai Shi2020-05-1910-77/+81
* bpo-38870: Don't omit parenthesis when unparsing a slice in ast.unparseBatuhan Taskaya2020-05-182-2/+20
* 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-182-4/+16
* 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-182-0/+13
* 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-183-31/+113
* 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-171-3/+12
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-173-41/+147
* bpo-40536: Add zoneinfo.available_timezones (GH-20158)Paul Ganssle2020-05-174-2/+205
* bpo-39058: Preserve attribute order in argparse Namespace reprs. (GH-17621)Raymond Hettinger2020-05-172-2/+2
* 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-161-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-172-23/+50
* bpo-38870: Implement round tripping support for typed AST in ast.unparse (GH-...Batuhan Taskaya2020-05-172-8/+56
* bpo-38870: Correctly handle empty docstrings in ast.unparse (GH-18768)Batuhan Taskaya2020-05-162-7/+21
* 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-162-2/+15
* bpo-38870: Do not separate factor prefixes in ast.unparse (GH-20133)Batuhan Taskaya2020-05-162-4/+13
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-162-3/+19
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-162-16/+72
* bpo-39305: Update nntplib to merge nntplib.NNTP and nntplib._NNTPBase (GH-19817)Dong-hee Na2020-05-162-60/+54
* 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-1611-0/+3447