summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Tweak blurb per Victor's requestfix-cf-feature-version-39Guido van Rossum2020-06-211-1/+1
* Add test by Stefan BehnelGuido van Rossum2020-06-212-1/+24
* Add blurbGuido van Rossum2020-06-201-0/+3
* Also check PyCF_ONLY_AST for old parserGuido van Rossum2020-06-202-2/+3
* Only use cf_feature_version if PyCF_ONLY_AST in cf_flagsGuido van Rossum2020-06-201-2/+3
* Add link to .pypirc specification (GH-20680)Miss Islington (bot)2020-06-201-0/+3
* bpo-41044: Generate valid PEG python parsers for opt+seq rules (GH-20995)Miss Islington (bot)2020-06-202-1/+15
* bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970)Miss Islington (bot)2020-06-202-2/+2
* bpo-41040: Fix test_modulefinder. (GH-20991)Miss Islington (bot)2020-06-191-1/+2
* bpo-38377: Fix skip_if_broken_multiprocessing_synchronize() on macOS (GH-20984)Miss Islington (bot)2020-06-191-8/+9
* Improve readability of `formataddr` docstring (GH-20963)Miss Islington (bot)2020-06-191-1/+1
* [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) ...Lysandros Nikolaou2020-06-196-1456/+1847
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944...Victor Stinner2020-06-188-12/+41
* bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)Inada Naoki2020-06-186-22/+75
* [3.9] bpo-40637: Do not emit warnings for disabled builtin hashes (GH… (GH-...stratakis2020-06-171-1/+1
* bpo-41003: Fix test_copyreg when numpy is installed (GH-20935) (GH-20945)Victor Stinner2020-06-174-13/+29
* bpo-19569: Add a macro to suppress deprecation warnings (GH-9004)Miss Islington (bot)2020-06-162-0/+22
* bpo-40958: Avoid buffer overflow in the parser when indexing the current line...Miss Islington (bot)2020-06-164-16/+16
* bpo-40993: Don't run Travis CI coverage on PRs (GH-20916)Miss Islington (bot)2020-06-161-0/+12
* bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20...Miss Islington (bot)2020-06-153-4/+13
* bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491)Miss Islington (bot)2020-06-156-7/+8
* bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)Miss Islington (bot)2020-06-156-31/+26
* bpo-40448: ensurepip: Do not use cache (GH-19812)Miss Islington (bot)2020-06-154-9/+12
* bpo-37556 Extend help to include latest overrides (GH-14701)Miss Islington (bot)2020-06-152-1/+11
* bpo-34226: fix cgi.parse_multipart without content_length (GH-8530)Miss Islington (bot)2020-06-153-2/+21
* bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886)Miss Islington (bot)2020-06-151-0/+2
* [3.9] Improve readability and style in parser files (GH-20884) (GH-20885)Pablo Galindo2020-06-152-119/+160
* [3.9] Include soft keywords in keyword.py (GH-20877). (GH-20880)Pablo Galindo2020-06-153-8/+20
* [3.9] bpo-40924: Remove protocol for supplying Traversable objects from loade...Jason R. Coombs2020-06-143-14/+2
* bpo-30064: Fix slow asyncio sock test (GH-20868)Miss Islington (bot)2020-06-141-14/+20
* Some reformatting (suggested by Black) and minor factoring. (GH-20865) (GH-20...Miss Islington (bot)2020-06-131-31/+29
* bpo-40855: Fix ignored mu and xbar parameters (GH-20835) (#GH-20862)Miss Islington (bot)2020-06-133-2/+18
* [3.9] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH...Miss Islington (bot)2020-06-131-1/+1
* Minor code clean-ups (GH-20838) (GH-20858)Miss Islington (bot)2020-06-131-89/+110
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Miss Islington (bot)2020-06-132-0/+2
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)Miss Islington (bot)2020-06-133-1/+5
* bpo-40164: Update Windows OpenSSL to 1.1.1g (GH-20834)Miss Islington (bot)2020-06-125-8/+9
* bpo-40964: disable remote IMAP tests (GH-20836)Christian Heimes2020-06-122-0/+5
* bpo-40955: Fix memory leak in subprocess module (GH-20825)Miss Islington (bot)2020-06-122-0/+2
* Update lexical_analysis.rst (GH-17508)Miss Islington (bot)2020-06-121-1/+1
* [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814)Pablo Galindo2020-06-115-11/+15
* bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) (GH-20813)Victor Stinner2020-06-114-13/+23
* bpo-34401: Fix test_gdb for HP GDB version string (GH-20804)Miss Islington (bot)2020-06-112-1/+3
* bpo-40939: Generate keyword.py using the new parser (GH-20800)Miss Islington (bot)2020-06-116-9/+88
* Collections module reformatting and minor code refactoring (GH-20772) (GH-20798)Miss Islington (bot)2020-06-111-91/+271
* bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)Miss Islington (bot)2020-06-104-1/+27
* bpo-40895: Update weakref documentation to remove old warnings (GH-20687)Miss Islington (bot)2020-06-101-16/+0
* bpo-40927: Fix test_binhex when run twice (GH-20764) (GH-20789)Victor Stinner2020-06-102-1/+3
* bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779) (GH-20785)Victor Stinner2020-06-104-46/+42
* bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...Miss Islington (bot)2020-06-102-15/+22