summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-2020-871/+34
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-2020-34/+871
* bpo-25460: Surround suggestions by quotes (GH-25473)Pablo Galindo2021-04-192-16/+16
* Add doctests (GH-25474)Raymond Hettinger2021-04-191-3/+45
* bpo-43837: Reverse order of precedence table to show tightly binding operator...Ammar Askar2021-04-191-29/+29
* bpo-40849: Expose X509_V_FLAG_PARTIAL_CHAIN ssl flag (GH-20463)l0x2021-04-194-0/+18
* bpo-43669: More test_ssl cleanups (GH-25470)Christian Heimes2021-04-191-78/+21
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-1914-201/+305
* bpo-42854: Use SSL_read/write_ex() (GH-25468)Christian Heimes2021-04-194-18/+34
* bpo-36076: Add SNI support to ssl.get_server_certificate. (GH-16820)juhovh2021-04-184-2/+28
* bpo-43641: Stop stating that TLS 1.2 is the most modern version in docs (GH-2...Illia Volochii2021-04-181-3/+2
* bpo-43362: Fix invalid free and return check in _sha3 module (GH-25463)Christian Heimes2021-04-182-3/+11
* Fix type group capture in the PEG highlight tool (GH-25464)Pablo Galindo2021-04-171-2/+7
* bpo-38530: Cover more error paths in error suggestion functions (GH-25462)Pablo Galindo2021-04-172-2/+15
* Small changes to the section about SyntaxErrors in the 3.10 What's New docume...Pablo Galindo2021-04-171-58/+70
* bpo-37630: Do not skip the sha3 tests in case of missing builtin sha3 module ...stratakis2021-04-171-22/+0
* bpo-38530: Include builtins in NameError suggestions (GH-25460)Pablo Galindo2021-04-172-5/+31
* bpo-42333: Port _ssl extension to multiphase initialization (PEP 489) (GH-23253)Christian Heimes2021-04-176-366/+468
* Fix typo in a dataclasses comment. (GH-25454)Eric V. Smith2021-04-171-1/+1
* bpo-43669: Remove OpenSSL 0.9 to 1.1.0 specific documentation (GH-25453)Christian Heimes2021-04-174-175/+12
* Fix a typo in subprocess documentation (GH-25426)andrei kulakov2021-04-171-1/+1
* bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)Christian Heimes2021-04-1717-8241/+5111
* bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)Christian Heimes2021-04-1718-709/+997
* Fix typo in exceptions.rst (GH-25434)Ikko Ashimine2021-04-171-1/+1
* bpo-43856: Add a versionadded directive to the importlib.metadata docs (GH-25...Zackery Spytz2021-04-161-0/+2
* bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)Victor Stinner2021-04-162-6/+17
* bpo-43862: Enhance -W cmdline option documentation (GH-25439)Victor Stinner2021-04-164-80/+113
* bpo-38530: Match exactly AttributeError and NameError when offering suggestio...Pablo Galindo2021-04-162-2/+17
* bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)Pablo Galindo2021-04-161-1/+2
* bpo-43843: libregrtest uses threading.excepthook (GH-25400)Victor Stinner2021-04-166-4/+91
* bpo-43842: Fix race condition in test_logging SMTP test (GH-25436)Victor Stinner2021-04-162-2/+9
* bpo-43844: Fix PendingDeprecationWarning in test_lib2to3 (GH-25407)Victor Stinner2021-04-161-4/+8
* bpo-41282: Fix distutils.utils.byte_compile() DeprecationWarning (GH-25406)Victor Stinner2021-04-163-7/+17
* bpo-40443: Remove unused imports (GH-25429)Victor Stinner2021-04-163-2/+2
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-165-3253/+3268
* Improve the section with SyntaxError message improvements to the What's New o...Pablo Galindo2021-04-161-2/+91
* bpo-43823: Fix location of one of the errors for invalid dictionary literals ...Pablo Galindo2021-04-152-2/+3
* bpo-43822: Improve syntax errors for missing commas (GH-25377)Pablo Galindo2021-04-1513-650/+851
* Update ACKS (GH-25423)Ethan Furman2021-04-151-0/+2
* bpo-43744: [Enum] fix ``_is_private`` (GH-25349)Ethan Furman2021-04-153-2/+30
* [Enum] fix doc string (GH-25376)Ethan Furman2021-04-151-2/+4
* bpo-43846: Use less stack for large literals and calls (GH-25403)Mark Shannon2021-04-153-50/+171
* bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)Pablo Galindo2021-04-154-364/+823
* bpo-37741: make importlib.metadata docs discoverable through a module directi...Jason R. Coombs2021-04-151-0/+5
* bpo-38530: Optimize the calculation of string sizes when offering suggestions...Pablo Galindo2021-04-141-8/+10
* bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)Erlend Egeberg Aasland2021-04-143-7/+24
* bpo-38530: Make sure that failing to generate suggestions on failure will not...Pablo Galindo2021-04-143-7/+19
* Fix typo in 3.10's What's New documentation (GH-25409)Zackery Spytz2021-04-141-1/+1
* bpo-41282: (PEP 632) Load install schemes from sysconfig (GH-24549)Lumír 'Frenzy' Balhar2021-04-143-38/+43
* bpo-43505: Explicitly initialize and shutdown sqlite3 (GH-25404)Erlend Egeberg Aasland2021-04-141-11/+14