summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)Eric Snow2019-06-014-20/+15
* bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer2019-05-303-3/+3
* bpo-36974: remove _PyObject_HasFastCall (GH-13460)Jeroen Demeyer2019-05-301-4/+0
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-8/+10
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-291-0/+3
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-297-44/+103
* bpo-37001: Makes symtable.symtable have parity with compile for input (#13483)Dino Viehland2019-05-281-0/+13
* Fix comments in initconfig.h (GH-13636)MandarJKulkarni2019-05-281-3/+3
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-2811-104/+114
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-281-0/+3
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-282-5/+0
* bpo-1230540: Add threading.excepthook() (GH-13515)Victor Stinner2019-05-271-0/+2
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-4/+3
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-279-291/+287
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-0/+3
* bpo-36785: PEP 574 implementation (GH-7076)Antoine Pitrou2019-05-262-0/+32
* bpo-36710: Add tstate parameter in ceval.c (GH-13547)Victor Stinner2019-05-244-3/+68
* Support Py_UNUSED() on clang (GH-13544)Victor Stinner2019-05-241-3/+8
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-237-24/+81
* bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)Victor Stinner2019-05-221-0/+4
* bpo-36763: Add _PyPreConfig._config_init (GH-13481)Victor Stinner2019-05-222-13/+13
* bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)Jake Tesler2019-05-221-0/+5
* bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan2019-05-221-2/+3
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-221-0/+4
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-0/+1
* Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...Victor Stinner2019-05-211-1/+0
* bpo-36763: Fix _PyRuntime.preconfig.coerce_c_locale (GH-13444)Victor Stinner2019-05-201-2/+2
* bpo-36763: Fix Python preinitialization (GH-13432)Victor Stinner2019-05-203-8/+28
* bpo-35134: Split traceback.h header (GH-13430)Victor Stinner2019-05-195-96/+120
* bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)Serhiy Storchaka2019-05-191-0/+3
* bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)Victor Stinner2019-05-182-3/+4
* bpo-36763: Use _PyCoreConfig_InitPythonConfig() (GH-13398)Victor Stinner2019-05-182-79/+18
* bpo-36763: _Py_InitializeFromArgs() argc becomes Py_ssize_t (GH-13396)Victor Stinner2019-05-172-8/+8
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-172-30/+39
* bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)Victor Stinner2019-05-171-0/+2
* bpo-36945: Add _PyPreConfig.configure_locale (GH-13368)Victor Stinner2019-05-171-0/+5
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-172-8/+31
* bpo-36763: Add PyMemAllocatorName (GH-13387)Victor Stinner2019-05-174-9/+28
* bpo-36763: Remove _PyCoreConfig.program (GH-13373)Victor Stinner2019-05-171-5/+9
* bpo-36763: Cleanup precmdline in _PyCoreConfig_Read() (GH-13371)Victor Stinner2019-05-171-1/+1
* bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363)Victor Stinner2019-05-161-0/+9
* bpo-36763: Add _Py_InitializeMain() (GH-13362)Victor Stinner2019-05-162-4/+10
* bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)Victor Stinner2019-05-161-22/+39
* bpo-36763: _PyInitError always use int for exitcode (GH-13360)Victor Stinner2019-05-161-4/+0
* bpo-36900: import.c uses PyInterpreterState.core_config (GH-13278)Victor Stinner2019-05-132-2/+2
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-132-1/+2
* bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)Jake Tesler2019-05-121-0/+1
* bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)Victor Stinner2019-05-103-52/+65
* bpo-36737: Use the module state C-API for warnings. (gh-13159)Eric Snow2019-05-102-2/+3
* bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer2019-05-101-14/+37