summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fix segfaults when parsing invalid inputfix-segfaultsGuido van Rossum2020-05-172-688/+2126
* bpo-37630: Fix spelling shake128 -> shake_128 (GH-20154)Christian Heimes2020-05-172-39/+39
* bpo-40645: Implement HMAC in C (GH-20129)Christian Heimes2020-05-174-89/+694
* bpo-39976: Add **other_popen_kwargs to subprocess docs (GH-20145)Zackery Spytz2020-05-171-4/+8
* bpo-35569: add Erlend to Misc/ACKS (GH-20146)Ned Deily2020-05-171-0/+1
* bpo-35569: Expose RFC 3542 IPv6 socket options on macOS (GH-19526)Erlend Egeberg Aasland2020-05-173-2/+38
* bpo-29587: Add another test for the gen.throw() fix. (GH-19859)Chris Jerdonek2020-05-161-0/+22
* bpo-40334: Improvements to error-handling code in the PEG parser (GH-20003)Lysandros Nikolaou2020-05-172-386/+669
* 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-174-23/+59
* 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-40211: Clarify os.preadv and os.pwritev are supported on AIX 7.1+ (GH-19401)Batuhan Taskaya2020-05-161-2/+4
* bpo-39740: Early declare devpoll_methods to support old compilers (GH-19281)Batuhan Taskaya2020-05-161-0/+2
* 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-166-21/+845
* bpo-40503: Add documentation and what's new entry for zoneinfo (GH-20006)Paul Ganssle2020-05-164-1/+430
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-167-29/+297
* bpo-39305: Update nntplib to merge nntplib.NNTP and nntplib._NNTPBase (GH-19817)Dong-hee Na2020-05-163-60/+56
* bpo-40275: lazy import modules in test.support (GH-20128)Hai Shi2020-05-161-4/+9
* bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-...Batuhan Taskaya2020-05-163-0/+40
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-1627-2/+6383
* bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)Christian Heimes2020-05-153-38/+33
* bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...Zackery Spytz2020-05-154-7/+9
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-1510-73/+358
* Add Andrew York to ACKS for GH-19622. (GH-20105)Chris Jerdonek2020-05-151-0/+1
* bpo-40637: Add option to disable builtin hashes (GH-20121)Christian Heimes2020-05-156-30/+158
* bpo-40445: Update compileall.compile_dir docs (GH-19806)Shantanu2020-05-151-1/+2
* bpo-40636: Clarify the zip built-in docstring. (GH-20118)Gregory P. Smith2020-05-152-6/+10
* bpo-40163: Fix multissltest download of old OpenSSL (GH-19329)Christian Heimes2020-05-152-11/+44
* bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...romasku2020-05-155-6/+66
* bpo-40515: Require OPENSSL_THREADS (GH-19953)Christian Heimes2020-05-153-1/+12
* bpo-40479: Test with latest OpenSSL versions (GH-20108)Christian Heimes2020-05-152-3/+60
* bpo-40479: Fix hashlib issue with OpenSSL 3.0.0 (GH-20107)Christian Heimes2020-05-153-8/+18
* bpo-40055: test_distutils leaves warnings filters unchanged (GH-20095)Victor Stinner2020-05-152-0/+9
* Trivial typo fix in _tkinter.c (GH-19622)Andrew York2020-05-151-7/+7
* Fix typo in code comment in main_loop label. (GH-20068)Chris Jerdonek2020-05-141-1/+1
* bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)Guido van Rossum2020-05-145-39/+94
* Update code comment re: location of struct _is. (GH-20067)Chris Jerdonek2020-05-141-1/+1
* bpo-40548: github actions: pass the changes check on no source changes (GH-20...Filipe Laíns2020-05-151-1/+1
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-1510-44/+136
* bpo-38872: Document exec symbol for codeop.compile_command (GH-20047)Joannah Nanjekye2020-05-143-5/+7
* bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-151-1/+1
* bpo-40460: Fix typo in idlelib/zzdummy.py (GH-20093)Victor Stinner2020-05-151-1/+1
* bpo-40548: GitHub Action workflow: skip jobs on doc only PRs (GH-19983)Filipe Laíns2020-05-151-0/+24
* bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)Victor Stinner2020-05-142-14/+26
* bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-145-46/+82