summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Add test for underscore in numberfeature-versionGuido van Rossum2019-03-071-0/+8
* Rename parses() to parse_all()Guido van Rossum2019-03-071-15/+15
* Clarify range of feature_version in docs.Guido van Rossum2019-03-071-1/+2
* Add tests for feature_versionGuido van Rossum2019-03-051-41/+94
* Fix indentation of many ast_error() callsGuido van Rossum2019-03-051-11/+11
* Simplify compile() call in ast.parse()Guido van Rossum2019-03-051-4/+1
* Manually add async and await to kwlist in keywords.py, since they are not reg...Guido van Rossum2019-03-051-0/+4
* Fix test_parser.pyGuido van Rossum2019-03-051-1/+1
* 'async' and 'await' are no longer plain keywords -- fix test_keyword.pyGuido van Rossum2019-03-051-2/+0
* Check flags isn't NULL before dereferencing (this broke regen-importlib)Guido van Rossum2019-03-051-1/+1
* Add blurbGuido van Rossum2019-03-051-0/+7
* Complete feature_version implementation (except loose ends)Guido van Rossum2019-03-0515-134/+246
* Implement further restrictions on feature_versionGuido van Rossum2019-03-051-1/+54
* Work towards feature_version supportGuido van Rossum2019-03-0512-16/+58
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-057-143/+103
* Fix the C function signature for _collections._tuplegetter.__reduce__. (GH-12...Serhiy Storchaka2019-03-051-2/+2
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-057-53/+129
* bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule....Stéphane Wirtel2019-03-052-2/+2
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-057-366/+465
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-0525-323/+264
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 1). (GH-10928)Serhiy Storchaka2019-03-055-298/+254
* closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169)Martijn Pieters2019-03-043-24/+5
* Doc: Use `option` word for command line interface. (GH-12142)NAKAMURA Osamu2019-03-041-1/+1
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-058-52/+209
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-059-52/+193
* Fixed a missing . and a missing capital letter. (GH-12170)Jules Lasne (jlasne)2019-03-041-2/+2
* bpo-36179: Fix ref leaks in _hashopenssl (GH-12158)Christian Heimes2019-03-042-5/+9
* bpo-35198 Fix C++ extension compilation on AIX (GH-10437)Kevin Adler2019-03-042-1/+10
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-0420-745/+576
* bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)pxinwr2019-03-047-14/+19
* Clean implementation of Parser/pgen and fix some style issues (GH-12156)Pablo Galindo2019-03-044-28/+14
* bpo-20906: Various revisions to the Unicode howto (#8394)Andrew Kuchling2019-03-031-158/+183
* fix typo in configparser doc (GH-12154)Woko2019-03-031-1/+1
* bpo-35899: Fix Enum handling of empty and weird strings (GH-11891)Brennan D Baraban2019-03-033-8/+27
* bpo-36170: posix_spawn doesn't exist on 3.7 (GH-12143)Mark Williams2019-03-031-1/+1
* add missing break statement (GH-12147)Inada Naoki2019-03-031-0/+4
* fixed duplicated method name of test_getuserbase() (GH-12140)native-api2019-03-041-1/+3
* bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)Henry Chen2019-03-032-1/+2
* Use names SEEK_SET, etc instead of magic number (GH-12057)ngie-eign2019-03-032-9/+11
* Remove some code which has been dead since 1994 (#12136)Alex Gaynor2019-03-011-11/+0
* bpo-36103: change default buffer size of shutil.copyfileobj() (GH-12115)Inada Naoki2019-03-023-2/+5
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-0112-393/+483
* bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)Pablo Galindo2019-03-0127-2684/+1480
* bpo-32129: Avoid blurry IDLE application icon on macOS with Tk 8.6. (GH-12031)Ned Deily2019-03-012-1/+3
* bpo-36043: FileCookieJar supports os.PathLike (GH-11945)Stéphane Wirtel2019-03-014-4/+35
* bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...Eric Snow2019-03-012-26/+27
* bpo-33608: Use _Py_AddPendingCall() in _PyCrossInterpreterData_Release(). (gh...Eric Snow2019-03-011-39/+42
* bpo-36146: Add TEST_EXTENSIONS to setup.py (GH-12129)Victor Stinner2019-03-012-81/+86
* bpo-35178: Fix warnings._formatwarnmsg() (GH-12033)Xtreak2019-03-013-1/+22
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-018-87/+115