summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-37369: Fixes path for sys.executable when running from the Microsoft Stor...Steve Dower2019-07-011-2/+12
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Miss Islington (bot)2019-03-251-1/+3
* bpo-36236: Handle removed cwd at Python init (GH-12450)Victor Stinner2019-03-201-1/+4
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Miss Islington (bot)2019-01-151-10/+15
* bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(...Miss Islington (bot)2019-01-141-0/+6
* bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)Miss Islington (bot)2018-12-101-1/+2
* bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-...Miss Islington (bot)2018-12-101-2/+0
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-081-1/+1
* Revert "bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)" (GH...Victor Stinner2018-11-221-23/+3
* bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)Miss Islington (bot)2018-11-161-3/+23
* bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)Miss Islington (bot)2018-07-091-1/+14
* bpo-33042: Fix pre-initialization sys module configuration (GH-6157)Miss Islington (bot)2018-03-251-0/+162
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-0/+55
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-1/+1
* bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)Victor Stinner2017-12-151-13/+30
* bpo-32030: Add _PyPathConfig_ComputeArgv0() (#4845)Victor Stinner2017-12-131-119/+17
* pymain_set_sys_argv() now copies argv (#4838)Victor Stinner2017-12-131-7/+24
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-2/+4
* bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka2017-12-121-3/+3
* bpo-32030: Add pymain_get_global_config() (#4735)Victor Stinner2017-12-061-2/+1
* bpo-32101: Add PYTHONDEVMODE environment variable (#4624)Victor Stinner2017-11-301-1/+4
* bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner2017-11-151-50/+87
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-221-6/+5
* PEP 553 built-in breakpoint() function (bpo-31353) (#3355)Barry Warsaw2017-10-051-0/+80
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-151-4/+2
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-141-3/+4
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-141-23/+18
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-131-20/+27
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-111-23/+18
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-24/+36
* bpo-31344: Per-frame control of trace events (GH-3417)Nick Coghlan2017-09-081-4/+5
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-7/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-35/+24
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-24/+35
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-4/+2
* bpo-29585: Fix sysconfig.get_config_var("PYTHONFRAMEWORK") (GH-2483)INADA Naoki2017-06-291-1/+1
* bpo-29585: optimize site.py startup time (GH-136)INADA Naoki2017-06-291-0/+1
* bpo-30598: _PySys_EndInit() now duplicates warnoptions (#1998)Victor Stinner2017-06-081-4/+4
* bpo-30567: Fix refleak in sys.getwindowsversion (#1940)Segev Finer2017-06-041-4/+4
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-221-42/+91
* bpo-27593: Get SCM build info from git instead of hg. (#446)Ned Deily2017-03-041-3/+3
* bpo-29556: Remove unused #include <langinfo.h> (#98)Yen Chi Hsuan2017-02-161-4/+0
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-20/+10
* Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-091-1/+1
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
* Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-1/+1
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-1/+1
* Add sys.getandroidapilevel()Victor Stinner2016-12-021-0/+18
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-1/+1
* Remove CALL_PROFILE special buildVictor Stinner2016-11-281-1/+14