summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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-041-158/+183
* fix typo in configparser doc (GH-12154)Woko2019-03-041-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-031-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-021-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
* bpo-36146: Don't run code at setup.py top level (GH-12127)Victor Stinner2019-03-011-76/+64
* bpo-36146: Split setup.py into subfunctions (GH-12125)Victor Stinner2019-03-011-228/+249
* bpo-36142: Move command line parsing to coreconfig.c (GH-12123)Victor Stinner2019-03-015-1415/+1473
* bpo-36146: Refactor setup.py: Add PyBuildExt.srcdir (GH-12124)Victor Stinner2019-03-011-98/+99
* bpo-36146: Refactor setup.py: PyBuildExt.add() method (GH-12097)Victor Stinner2019-03-011-227/+204
* bpo-36146: Fix inc_dirs in setup.py on macOS (GH-12098)Victor Stinner2019-03-012-2/+5
* bpo-36142: Remove _PyMain structure (GH-12120)Victor Stinner2019-03-014-145/+145
* bpo-36142: Rework error reporting in pymain_main() (GH-12113)Victor Stinner2019-03-018-228/+190
* bpo-36152: IDLE: Remove unused parameter from colorizer (GH-12109)Cheryl Sabella2019-03-013-18/+6
* bpo-36155: Check for identity on test_gc.test_get_objects (GH-12116)Pablo Galindo2019-03-011-12/+36
* bpo-36018: Add documentation link to "random variable" (GH-12114)Raymond Hettinger2019-03-011-5/+7
* bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)Victor Stinner2019-03-0114-31/+57
* bpo-29571: Fix test_re.test_locale_flag() (GH-12099)Victor Stinner2019-02-282-2/+4
* bpo-36018: Add special value tests and make minor tweaks to the docs (GH-12096)Raymond Hettinger2019-02-283-4/+12
* Add versionadded directives to ssl.minimum_version and ssl.maximum_version (G...Zhiming Wang2019-02-281-6/+10
* bpo-36146: Refactor setup.py (GH-12093)Victor Stinner2019-02-281-69/+72
* Document the surprising sideeffect PyErr_Print(). (#12081)Gregory P. Smith2019-02-271-2/+6
* Fix grammar error in timeit module docs (GH-12066)Shiv Dhar2019-02-271-1/+1
* Update FAQ to point to Infrastructure Team website. (GH-12077)Ned Deily2019-02-271-8/+2
* bpo-36096: IDLE: Refactor class variables in colorizer (GH-12002)Cheryl Sabella2019-02-273-21/+58
* bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968)pxinwr2019-02-275-18/+75
* bpo-36123: Fix test_socket.testWithTimeoutTriggeredSend() race condition (GH-...Joannah Nanjekye2019-02-262-2/+4
* bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry inste...Giampaolo Rodola2019-02-263-1/+21
* closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045)Benjamin Peterson2019-02-261-0/+2
* bpo-36106: Resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027)Dima Pasechnik2019-02-262-4/+5
* bpo-36109: Fix random test_descr failure. (GH-12044)Serhiy Storchaka2019-02-261-1/+5
* Run autoreconf.Benjamin Peterson2019-02-263-14/+16
* closes bpo-13497: Fix `broken nice` configure test. (GH-12041)ngie-eign2019-02-261-0/+2