summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-40370: Use the same compile and link args as the interpreter used in test...Pablo Galindo2020-04-232-3/+16
* gdbinit: Use proper define syntax (GH-19557)Florian Bruhin2020-04-231-1/+1
* bpo-40334: Suppress all output in test_peg_generator (GH-19675)Lysandros Nikolaou2020-04-232-5/+1
* bpo-40334: Fix build errors and warnings in test_peg_generator (GH-19672)Pablo Galindo2020-04-234-2/+17
* bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671)Pablo Galindo2020-04-232-22/+22
* Compile extensions in test_peg_generator with C99 (GH-19668)Pablo Galindo2020-04-232-14/+13
* bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)Victor Stinner2020-04-2326-54/+83
* bpo-40334: Fix builds outside the source directory and regenerate autoconf fi...Pablo Galindo2020-04-234-7/+76
* Add @pablogsal as code owner for pegen-related files (GH-19665)Pablo Galindo2020-04-221-0/+2
* bpo-40334: Fix errors in parse_string.c with old compilers (GH-19666)Pablo Galindo2020-04-221-10/+14
* PEP 617: Only run the CI with the new parser (GH-19664)Pablo Galindo2020-04-222-46/+0
* bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)Pablo Galindo2020-04-2291-147/+27058
* bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)sweeneyde2020-04-2213-6/+597
* bpo-40260: Remove unnecessary newline in compile() call (GH-19641)Anthony Sottile2020-04-221-1/+1
* bpo-39562: Prevent collision of future and compiler flags (GH-19230)Batuhan Taşkaya2020-04-226-22/+49
* bpo-40214: Fix ctypes WinDLL test with insecure flags (GH-19652)Steve Dower2020-04-221-5/+3
* bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637)Victor Stinner2020-04-224-40/+87
* bpo-38329: python.org macOS installers now update Current symlink (GH-19650)Ned Deily2020-04-222-6/+4
* bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480)Joshua Root2020-04-225-16/+79
* bpo-38439: Add 256px IDLE icon (GH-17473)Miro Hrončok2020-04-226-2/+19
* bpo-40164: Update macOS installer builds to use OpenSSL 1.1.1g. (GH-19642)Ned Deily2020-04-222-3/+4
* bpo-40327: Improve atomicity, speed, and memory efficiency of the items() loo...Raymond Hettinger2020-04-211-1/+1
* Small improvements to the recipes and examples. (GH-19635)Raymond Hettinger2020-04-211-30/+26
* bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634)Kyle Stanley2020-04-211-0/+5
* bpo-40335: Correctly handle multi-line strings in tokenize error scenarios (G...Pablo Galindo2020-04-213-23/+37
* bpo-40313: speed up bytes.hex() (GH-19594)sweeneyde2020-04-212-12/+50
* Fix uninitialized struct member (GH-19589)Raymond Hettinger2020-04-201-0/+1
* bpo-39942:Fix failure in `TypeVar` when missing `__name__` (GH-19616)HongWeipeng2020-04-203-1/+13
* bpo-40330: Fix utf-8 size check in ShareableList (GH-19606)Antoine Pitrou2020-04-203-6/+22
* bpo-39849: Enable assertions in _testcapimodule.c and _testinternalcapi.c (GH...Hai Shi2020-04-202-0/+6
* bpo-40260: Revert breaking changes made in modulefinder (GH-19595)Barry2020-04-202-12/+24
* Fix typo in Lib/tracepack.py (GH-19605)Galden2020-04-201-1/+1
* ignore Modules/python.exp on AIX (autogenerated) (GH-19607)Batuhan Taşkaya2020-04-191-0/+1
* bpo-40148: Add PurePath.with_stem() (GH-19295)Tim Hoffmann2020-04-194-0/+60
* bpo-38891: avoid quadratic item access performance of ShareableList (GH-18996)Thomas Krennwallner2020-04-192-30/+48
* bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453)Kyle Stanley2020-04-194-6/+63
* bpo-39285: Clarify example for PurePath.match (GH-19458)Tim Lo2020-04-191-1/+3
* bpo-40325: Deprecate set object support in random.sample() (GH-19591)Raymond Hettinger2020-04-194-2/+17
* bpo-27635: Fix pickle documentation about `__new__` not being called. (GH-19269)Furkan Önder2020-04-182-3/+5
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-185-23/+200
* Add spaces around the ":=" operator in ast_unparse.c (GH-19568)Hakan Çelik2020-04-182-3/+3
* bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360)Serhiy Storchaka2020-04-183-126/+716
* bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364)Serhiy Storchaka2020-04-184-24/+125
* bpo-35967: Skip test with `uname -p` on Android (GH-19577)Chih-Hsuan Yen2020-04-181-2/+5
* bpo-40257: Improve help for the typing module (GH-19546)Serhiy Storchaka2020-04-185-4/+24
* Fix two typos in multiprocessing (GH-19571)Galden2020-04-181-2/+2
* bpo-40286: Use random.randbytes() in tests (GH-19575)Victor Stinner2020-04-175-28/+9
* bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (...Serhiy Storchaka2020-04-172-16/+26
* bpo-39894: Route calls from pathlib.Path.samefile() to os.stat() via the path...Barney Gale2020-04-171-1/+1
* bpo-39897: Remove needless `Path(self.parent)` call, which makes `is_mount()`...Barney Gale2020-04-171-3/+2