summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16...Pablo Galindo2019-10-141-3/+9
* Correct signature of __build_class__ (GH-16735)Pablo Galindo2019-10-131-1/+1
* Typo fix: "throuhgh" should be "through". (GH-16704)Hansraj Das2019-10-101-1/+1
* bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)Dong-hee Na2019-10-101-1/+2
* Typo fix: "empy" should be "empty". (GH-16666)Hansraj Das2019-10-081-1/+1
* Fix typo in _warnings.warn_explicit() docstring (GH-16625)Hansraj Das2019-10-081-1/+1
* bpo-38353: getpath.c: allocates strings on the heap (GH-16585)Victor Stinner2019-10-041-9/+20
* bpo-38266: Revert bpo-37878: Make PyThreadState_DeleteCurrent() Internal (GH-...Joannah Nanjekye2019-10-041-2/+8
* bpo-38353: Add subfunctions to getpath.c (GH-16572)Victor Stinner2019-10-041-4/+6
* bpo-38353: Cleanup includes in the internal C API (GH-16548)Victor Stinner2019-10-021-0/+1
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Victor Stinner2019-10-015-54/+13
* bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508)Victor Stinner2019-10-016-114/+12
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Victor Stinner2019-09-303-45/+85
* bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467)Brandt Bucher2019-09-281-0/+2
* bpo-38304: Add PyConfig.struct_size (GH-16451)Victor Stinner2019-09-286-28/+175
* bpo-38234: Py_Initialize() sets global path configuration (GH-16421)Victor Stinner2019-09-262-9/+24
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-5/+28
* bpo-38234: Py_SetPath() uses the program full path (GH-16357)Victor Stinner2019-09-241-4/+7
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335)Victor Stinner2019-09-231-149/+166
* bpo-38236: Fix init_dump_ascii_wstr() (GH-16333)Victor Stinner2019-09-231-0/+1
* bpo-38236: Dump path config at first import error (GH-16300)Victor Stinner2019-09-231-2/+97
* Shorter docstring (GH-16322)Raymond Hettinger2019-09-212-4/+4
* bpo-38237: Make pow's arguments have more descriptive names and be keyword pa...Ammar Askar2019-09-202-26/+32
* bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298)Victor Stinner2019-09-211-0/+7
* bpo-38234: Remove _PyPathConfig.dll_path (GH-16307)Victor Stinner2019-09-212-64/+45
* bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)Eddie Elizondo2019-09-191-2/+7
* bpo-38070: Py_FatalError() logs runtime state (GH-16246)Victor Stinner2019-09-181-26/+59
* bpo-38070: Add _PyRuntimeState.preinitializing (GH-16245)Victor Stinner2019-09-171-3/+8
* bpo-38070: _Py_DumpTraceback() writes <no Python frame> (GH-16244)Victor Stinner2019-09-171-5/+8
* Fix leaks in Python-ast.c (#16127)Eddie Elizondo2019-09-141-1/+5
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-146-13/+13
* Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)Greg Price2019-09-121-1/+1
* bpo-38138: Fix memory leak introduced by interned strings (GH-16053)Dino Viehland2019-09-121-0/+1
* Revert "Fix depth-first-search computation in compile.c (GH-16042)" (GH-16050)T. Wouters2019-09-121-24/+30
* Fix depth-first-search computation in compile.c (GH-16042)Mark Shannon2019-09-121-30/+24
* bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993)Jason R. Coombs2019-09-121-1032/+912
* closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)Benjamin Peterson2019-09-121-8/+6
* bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)Dino Viehland2019-09-111-1388/+2462
* bpo-35923: Update the BuiltinImporter to use loader._ORIGIN instead of a hard...Dong-hee Na2019-09-111-754/+755
* bpo-38113: Update Python/ast.c to PEP-384 (GH-15975)Dino Viehland2019-09-111-4/+3
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)Raymond Hettinger2019-09-112-7/+7
* bpo-35943: Prevent PyImport_GetModule() from returning a partially-initialize...Joannah Nanjekye2019-09-111-23/+46
* bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)Jeroen Demeyer2019-09-111-1/+1
* bpo-37409: fix relative import with no parent (#14956)Ben Lewis2019-09-111-11/+13
* bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)Jordon Xu2019-09-103-7/+7
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-101-613/+612
* bpo-38090: Fix reference leak in ceval.c (GH-15848)Pablo Galindo2019-09-101-1/+0
* bpo-36781: Optimize sum() for bools. (#13074)Serhiy Storchaka2019-09-101-2/+2
* bpo-38068: Clean up gettimeofday configure logic. (GH-15775)Benjamin Peterson2019-09-102-12/+1
* bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824)Serhiy Storchaka2019-09-101-131/+307