summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-284-15/+11
* bpo-40275: test.support imports subprocess lazily (GH-20471)Victor Stinner2020-05-271-3/+11
* bpo-40275: test.support.check_impl_detail() uses sys.implementation (GH-20468)Victor Stinner2020-05-271-1/+1
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Victor Stinner2020-05-273-27/+44
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-2745-361/+405
* Revert "bpo-32604: PEP 554 for use in test suite (GH-19985)" (#20465)Pablo Galindo2020-05-273-863/+0
* bpo-40614: Respect feature version for f-string debug expressions (GH-20196)Shantanu2020-05-271-0/+5
* bpo-40791: Use CRYPTO_memcmp() for compare_digest (#20456)Christian Heimes2020-05-272-36/+55
* bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)Fantix King2020-05-272-16/+156
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Sean Gillespie2020-05-271-0/+15
* Upgrade bundled versions of pip & setuptools (#16782)Xavier Fernandez2020-05-274-6/+6
* Fix lookahead of soft keywords in the PEG parser (GH-20436)Pablo Galindo2020-05-261-0/+12
* Add soft keywords (GH-20370)Guido van Rossum2020-05-261-0/+30
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-269-210/+60
* bpo-40756: Default second argument of LoggerAdapter.__init__ to None (GH-20362)Arturo Escaip2020-05-261-1/+1
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)idomic2020-05-262-4/+7
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (#20422)Christian Heimes2020-05-261-9/+23
* Remove duplicated words words (GH-20413)Serhiy Storchaka2020-05-261-1/+1
* Simplify creation of the __new__ method in namedtuple() (GH-20361)Raymond Hettinger2020-05-261-4/+2
* bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20399)Lysandros Nikolaou2020-05-261-0/+13
* bpo-23082: Better error message for PurePath.relative_to() from pathlib (GH-1...Rotuna2020-05-251-1/+2
* bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)Miro Hrončok2020-05-251-1/+1
* bpo-40695: Limit hashlib builtin hash fallback (GH-20259)Christian Heimes2020-05-251-2/+3
* bpo-35714: Reject null characters in struct format strings (GH-16928)Zackery Spytz2020-05-251-0/+8
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Rémi Lapeyre2020-05-242-0/+16
* bpo-40443: Remove unused imports in the zoneinfo (GH-20354)Dong-hee Na2020-05-242-4/+0
* bpo-37309: Update IDLE NEWS.txt (GH-20356)Terry Jan Reedy2020-05-241-0/+1
* bpo-40723: Make IDLE autocomplete test run without __main__.__file__ (GH-20311)Florian Dahlitz2020-05-242-1/+3
* Cosmetic smtplib changes (GH-8718)Ville Skyttä2020-05-231-3/+3
* bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)Dennis Sweeney2020-05-222-1/+50
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Chris Jerdonek2020-05-222-3/+62
* bpo-9216: hashlib usedforsecurity fixes (GH-20258)Christian Heimes2020-05-225-34/+87
* bpo-40630: Add tracemalloc.reset_peak (GH-20102)Huon Wilson2020-05-221-0/+24
* bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...Lysandros Nikolaou2020-05-221-5/+3
* bpo-40715: Reject dict unpacking on dict comprehensions (GH-20292)Batuhan Taskaya2020-05-211-0/+5
* bpo-40176: Improve error messages for trailing comma on from import (GH-20294)Batuhan Taskaya2020-05-211-0/+8
* bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)Kyle Stanley2020-05-212-2/+20
* s/wakup/wakeup (GH-20250)Kunal Bhalla2020-05-201-1/+1
* bpo-40698: Improve distutils upload hash digests (GH-20260)Christian Heimes2020-05-202-5/+41
* Fix the URL to fishshell.com (GH-20251)Jonathan Goble2020-05-201-1/+1
* bpo-38870: invalid escape sequence (GH-20240)Batuhan Taskaya2020-05-191-1/+1
* bpo-32604: PEP 554 for use in test suite (GH-19985)Joannah Nanjekye2020-05-193-0/+863
* bpo-32309: Implement asyncio.to_thread() (GH-20143)Kyle Stanley2020-05-193-0/+102
* 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-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