summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a dep...Steve Dower2019-12-091-1/+1
* bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)Victor Stinner2019-12-061-5/+14
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...Steve Dower2019-11-281-2/+2
* bpo-36710: Add PyInterpreterState.runtime field (GH-17270)Victor Stinner2019-11-201-15/+14
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Victor Stinner2019-09-291-2/+2
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-141-2/+2
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)Raymond Hettinger2019-09-111-6/+6
* bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)Serhiy Storchaka2019-09-011-8/+6
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)Victor Stinner2019-08-231-29/+29
* bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415)Victor Stinner2019-08-231-1/+1
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer2019-07-111-4/+2
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-0/+1
* bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)Jeroen Demeyer2019-06-281-20/+7
* bpo-37414: Remove sys.callstats() (GH-14398)Victor Stinner2019-06-261-39/+0
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-251-53/+0
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Zackery Spytz2019-06-211-0/+1
* bpo-36710: Use tstate in pylifecycle.c (GH-14249)Victor Stinner2019-06-191-2/+2
* bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)Victor Stinner2019-06-131-170/+244
* Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)Victor Stinner2019-06-041-16/+15
* bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)Eric Snow2019-06-011-15/+16
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-291-1/+1
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-58/+0
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-28/+28
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-4/+5
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+311
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-221-0/+28
* bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-061-4/+4
* bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)Victor Stinner2019-05-021-24/+3
* bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)Victor Stinner2019-04-241-10/+12
* bpo-36447, bpo-36447: Fix refleak in _PySys_InitMain() (GH-12586)Pablo Galindo2019-03-271-0/+1
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-34/+85
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-4/+5
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Stefan Krah2019-03-251-1/+3
* bpo-36236: Handle removed cwd at Python init (GH-12424)Victor Stinner2019-03-191-10/+12
* bpo-36301: Add _PyWstrList structure (GH-12343)Victor Stinner2019-03-151-21/+22
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-051-1/+1
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-051-1/+1
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-051-2/+2
* bpo-35890 : Fix some API calling consistency (GH-11742)Minmin Gong2019-02-031-3/+3
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-0/+2
* bpo-35713: Reorganize sys module initialization (GH-11658)Victor Stinner2019-01-231-19/+80
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-221-16/+0
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Serhiy Storchaka2019-01-151-10/+15
* bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(...Serhiy Storchaka2019-01-141-0/+6
* remove doc-string declaration no longer used after AC conversion (GH-11444)Tal Einat2019-01-061-4/+0
* bpo-20182: AC convert Python/sysmodule.c (GH-11328)Tal Einat2018-12-311-405/+477
* bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)Serhiy Storchaka2018-12-101-1/+2
* bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-...Serhiy Storchaka2018-12-101-2/+0
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-081-1/+1