summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)Victor Stinner2020-11-049-16/+189
* Disable peg generator tests when building with PGO (GH-23141)serge-sans-paille2020-11-041-0/+6
* bpo-1635741: _sqlite3 uses PyModule_AddObjectRef() (GH-23148)Erlend Egeberg Aasland2020-11-042-17/+16
* bpo-1635741: Fix PyInit_pyexpat() error handling (GH-22489)Mohamed Koubaa2020-11-041-189/+299
* bpo-42260: Main init modify sys.flags in-place (GH-23150)Victor Stinner2020-11-044-74/+89
* bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151)Victor Stinner2020-11-042-11/+5
* bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)Victor Stinner2020-11-042-220/+117
* bpo-1635741: _contextvars uses PyModule_AddType() (GH-23147)Victor Stinner2020-11-042-21/+6
* bpo-42260: Reorganize PyConfig (GH-23149)Victor Stinner2020-11-041-5/+5
* bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)Victor Stinner2020-11-045-46/+146
* bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)Victor Stinner2020-11-045-17/+52
* bpo-42251: Add gettrace and getprofile to threading (GH-23125)Mario Corchero2020-11-045-1/+61
* Enable signing of nuget.org packages and update to supported timestamp server...Steve Dower2020-11-035-8/+17
* Fix incorrect links in ast docs (GH-23017)Matthew Suozzo2020-11-031-6/+7
* Add _PyType_GetModuleByDef (GH-22835)Petr Viktorin2020-11-034-3/+52
* Post 3.10.0a2Pablo Galindo2020-11-031-1/+1
* Merge tag 'v3.10.0a2' into masterPablo Galindo2020-11-0393-255/+1047
|\
| * Python 3.10.0a2v3.10.0a2Pablo Galindo2020-11-0393-255/+1047
* | bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)Victor Stinner2020-11-035-44/+79
* | bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121)Serhiy Storchaka2020-11-032-1/+2
* | bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108)Erlend Egeberg Aasland2020-11-032-68/+91
|/
* bpo-35455: Fix thread_time for Solaris OS (GH-11118)Jakub KulĂ­k2020-11-022-0/+20
* bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053)Victor Stinner2020-11-024-8/+50
* bpo-41796: Make _ast module state per interpreter (GH-23024)Victor Stinner2020-11-028-202/+549
* bpo-42103: Improve validation of Plist files. (GH-22882)Serhiy Storchaka2020-11-024-57/+363
* bpo-41943: Fix bug where assertLogs doesn't correctly filter messages… (GH-...Irit Katriel2020-11-023-0/+14
* Revert "bpo-37193: remove thread objects which finished process its request (...Jason R. Coombs2020-11-023-86/+13
* bpo-42236: Enhance init and encoding documentation (GH-23109)Victor Stinner2020-11-0219-523/+738
* bpo-42224: Fix test_format when locale does not expect number grouping (GH-23...Lysandros Nikolaou2020-11-021-2/+5
* bpo-41435: Add sys._current_exceptions() function (GH-21689)Julien Danjou2020-11-027-1/+185
* bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...Jakub Stasiak2020-11-022-6/+6
* bpo-41229: Update docs for explicit aclose()-required cases and add contextli...Joongi Kim2020-11-025-4/+133
* Minor formatting edits to the descriptor howto guide (GH-23092)Raymond Hettinger2020-11-021-19/+20
* bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910)Tal Einat2020-11-024-7/+144
* Add member objects to the descriptor howto guide (GH-23084)Raymond Hettinger2020-11-021-0/+156
* bpo-37193: remove thread objects which finished process its request (GH-13893)MARUYAMA Norihiro2020-11-013-13/+86
* bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086)Victor Stinner2020-11-018-90/+88
* bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)Victor Stinner2020-11-015-52/+76
* bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)kj2020-11-013-0/+12
* Expand and clarify the "Invoking Descriptors" section of the Descriptor HowTo...Raymond Hettinger2020-11-012-38/+79
* bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062)Dong-hee Na2020-11-011-0/+4
* tempfile: Use random.choises() instead of choise() (GH-23068)Inada Naoki2020-11-012-6/+3
* bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059)Ronald Oussoren2020-11-013-2/+15
* bpo-42146: Unify cleanup in subprocess_fork_exec() (GH-22970)Alexey Izbyshev2020-11-011-35/+18
* bpo-42198: New section in stdtypes for type annotation types (GH-23063)kj2020-10-311-4/+14
* bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)Lysandros Nikolaou2020-10-314-0/+32
* bpo-42198: Improve consistency of Union docs (GH-23029)kj2020-10-312-24/+15
* bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484)Erlend Egeberg Aasland2020-10-314-88/+313
* bpo-42198: Document __new__ for types.GenericAlias (GH-23039)kj2020-10-312-2/+14
* Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)"Inada Naoki2020-10-313-13/+14