summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477)Dong-hee Na2020-04-141-4/+4
* bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)Victor Stinner2020-04-1423-52/+53
* bpo-40268: Include explicitly pycore_interp.h (GH-19505)Victor Stinner2020-04-1419-13/+31
* bpo-39481: Make weakref and WeakSet generic (GH-19497)Ethan Smith2020-04-143-1/+12
* bpo-39481: Make functools.cached_property, partial, partialmethod generic (#1...Ethan Smith2020-04-143-0/+10
* closes bpo-40266, closes bpo-39953: Use numeric lib code if compiling against...Benjamin Peterson2020-04-142-1252/+1256
* Fix typo from Lib/asyncio/events.py (GH-19410)Galden2020-04-141-1/+1
* bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)Batuhan Taşkaya2020-04-135-9/+5
* bpo-39380: Change ftplib encoding from latin-1 to utf-8 (GH-18048)Sebastian Pedersen2020-04-135-54/+101
* bpo-32894: Support unparsing of infinity numbers in ast_unparser.c (GH-17426)Batuhan Taşkaya2020-04-133-5/+68
* bpo-40091: Fix a hang at fork in the logging module (GH-19416)Victor Stinner2020-04-132-12/+14
* bpo-39481: fix test_genericalias on Android (GH-19469)Chih-Hsuan Yen2020-04-131-1/+7
* bpo-40241: Add pycore_interp.h header (GH-19499)Victor Stinner2020-04-135-165/+189
* bpo-40268: Add pycore_runtime.h header file (GH-19493)Victor Stinner2020-04-137-125/+152
* bpo-40241: Add pycore_gc.h header file (GH-19494)Victor Stinner2020-04-138-62/+98
* Improved documentation for `BUILD_CONST_KEY_MAP` (GH-19454)laike9m2020-04-131-3/+3
* Add double quote cases to invalid prefix tests (GH-19489)Pablo Galindo2020-04-131-4/+5
* bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)Victor Stinner2020-04-1319-64/+90
* bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...Victor Stinner2020-04-127-91/+21
* closes bpo-39953: Generate ifdefs around library code definitions. (GH-19490)Benjamin Peterson2020-04-122-1/+55
* bpo-40246: Report a better error message for invalid string prefixes (GH-19476)Lysandros Nikolaou2020-04-125-1/+10
* bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser...Oren Milman2020-04-123-0/+41
* bpo-13743: Add some documentation strings to xml.dom.minidom (GH-16355)Alex Itkes2020-04-122-0/+24
* bpo-39011: Preserve line endings within ElementTree attributes (GH-18468)mefistotelis2020-04-124-9/+22
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-1220-37/+38
* closes bpo-39953: Update OpenSSL error codes table. (GH-19082)Benjamin Peterson2020-04-113-388/+4719
* bpo-40126: Fix reverting multiple patches in unittest.mock. (GH-19351)Serhiy Storchaka2020-04-113-49/+30
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-1127-221/+250
* bpo-38501: Add a warning section to multiprocessing.Pool docs about resource ...Pablo Galindo2020-04-111-1/+12
* bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the publi...Pablo Galindo2020-04-116-1/+50
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-1015-1/+66
* bpo-39481: PEP 585 for difflib, filecmp, fileinput (#19422)Ethan Smith2020-04-104-0/+17
* bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)Ethan Smith2020-04-104-4/+11
* bpo-39481: PEP 585 for ipaddress.py (GH-19418)Batuhan Taşkaya2020-04-102-0/+10
* Generic itertools.chain (GH-19417)Ethan Smith2020-04-102-1/+5
* bpo-39943: Keep constness of pointer objects. (19405)Andy Lester2020-04-101-6/+5
* bpo-31904: Fix test_c_locale_coercion encodings for VxWorks RTOS (GH-19448)pxinwr2020-04-092-0/+5
* bpo-40077: Remove redundant cast in json module (GH-19438)Hai Shi2020-04-091-2/+2
* bpo-25780: Expose CAN_RAW_JOIN_FILTERS in the socket module (GH-19190)Zackery Spytz2020-04-098-0/+66
* bpo-40082: trip_signal() uses the main interpreter (GH-19441)Victor Stinner2020-04-086-85/+94
* bpo-37127: Remove _pending_calls.finishing (GH-19439)Victor Stinner2020-04-082-17/+0
* bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436)Victor Stinner2020-04-084-52/+109
* Remove extraneous ')' in abstract.h (GH-19146)Jimmy Yang2020-04-081-1/+1
* bpo-40187: Refactor typing.TypedDict. (GH-19372)Serhiy Storchaka2020-04-081-34/+33
* bpo-40185: Refactor typing.NamedTuple (GH-19371)Serhiy Storchaka2020-04-082-59/+54
* bpo-40170: Remove PyIndex_Check() macro (GH-19428)Victor Stinner2020-04-083-8/+3
* bpo-40170: Add _PyIndex_Check() internal function (GH-19426)Victor Stinner2020-04-0817-30/+72
* bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)Victor Stinner2020-04-075-30/+46
* bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)Victor Stinner2020-04-073-3/+14
* bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)Victor Stinner2020-04-0711-78/+81