Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
1c776541a8805576c0a4363ca28c1d29423f02f6
/
Python
/
sysmodule.c
8175064
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605) (GH-20725)
by Victor Stinner
· 5 years ago
6d62dc1
[3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618)
by Victor Stinner
· 5 years ago
7036477
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
by Victor Stinner
· 5 years ago
1def775
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
by Victor Stinner
· 5 years ago
c5fc156
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
by Pablo Galindo
· 5 years ago
361dcdc
bpo-40268: Remove unused osdefs.h includes (GH-19532)
by Victor Stinner
· 5 years ago
d9ea5ca
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
by Victor Stinner
· 5 years ago
62183b8
bpo-40268: Remove explicit pythread.h includes (#19529)
by Victor Stinner
· 5 years ago
675d9a3
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
by Hai Shi
· 5 years ago
e5014be
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
by Victor Stinner
· 5 years ago
81a7be3
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
by Victor Stinner
· 5 years ago
4a3fe08
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
by Victor Stinner
· 5 years ago
da7933e
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
by Victor Stinner
· 5 years ago
08faf00
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
by Victor Stinner
· 5 years ago
79ceccd
bpo-38410: Properly handle PySys_Audit() failures (GH-16657)
by Zackery Spytz
· 5 years ago
309d7cc
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
by Victor Stinner
· 5 years ago
8510f43
bpo-1294959: Add sys.platlibdir attribute (GH-18381)
by Victor Stinner
· 5 years ago
7b3c252
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
by Victor Stinner
· 5 years ago
da4d656
closes bpo-39870: Remove unused arg from sys_displayhook_unencodable. (GH-18796)
by Andy Lester
· 5 years ago
e6be9b5
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
by Andy Lester
· 5 years ago
ffd9753
bpo-39245: Switch to public API for Vectorcall (GH-18460)
by Petr Viktorin
· 5 years ago
a102ed7
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
by Victor Stinner
· 5 years ago
a93c51e
bpo-39573: Use Py_REFCNT() macro (GH-18388)
by Victor Stinner
· 5 years ago
c6e5c11
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
by Victor Stinner
· 6 years ago
aabdeb7
bpo-38960: DTrace build fix for FreeBSD. (GH-17451)
by David Carlier
· 6 years ago
b8cbe74
bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a deprecation warning (GH-17540)
by Steve Dower
· 6 years ago
81fe5bd
bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)
by Victor Stinner
· 6 years ago
bea33f5
bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks are invoked (GH-17392)
by Steve Dower
· 6 years ago
01b1cc1
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
by Victor Stinner
· 6 years ago
fb4ae15
bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)
by Victor Stinner
· 6 years ago
279f446
bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933)
by Serhiy Storchaka
· 6 years ago
7117074
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)
by Raymond Hettinger
· 6 years ago
41c57b3
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
by Serhiy Storchaka
· 6 years ago
120b707
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)
by Victor Stinner
· 6 years ago
c486825
bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415)
by Victor Stinner
· 6 years ago
c4cacc8
Fix typos in comments, docs and test names (#15018)
by Min ho Kim
· 6 years ago
59ad110
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
by Jeroen Demeyer
· 6 years ago
9048c49
bpo-37369: Fix initialization of sys members when launched via an app container (GH-14428)
by Steve Dower
· 6 years ago
b1263d5
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
by Jeroen Demeyer
· 6 years ago
6915066
bpo-37414: Remove sys.callstats() (GH-14398)
by Victor Stinner
· 6 years ago
36456df
bpo-37392: Remove sys.setcheckinterval() (GH-14355)
by Victor Stinner
· 6 years ago
08286d5
bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)
by Zackery Spytz
· 6 years ago
b45d259
bpo-36710: Use tstate in pylifecycle.c (GH-14249)
by Victor Stinner
· 6 years ago
838f264
bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)
by Victor Stinner
· 6 years ago
0fd2c30
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
by Victor Stinner
· 6 years ago
396e0a8
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
by Eric Snow
· 6 years ago
aacc77f
bpo-36974: implement PEP 590 (GH-13185)
by Jeroen Demeyer
· 6 years ago
3880f26
bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-13577)
by Matthias Bussonnier
· 6 years ago
331a6a5
bpo-36763: Implement the PEP 587 (GH-13592)
by Victor Stinner
· 6 years ago
71c52e3
bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)
by Victor Stinner
· 6 years ago
b82e17e
bpo-36842: Implement PEP 578 (GH-12613)
by Steve Dower
· 6 years ago
ef9d9b6
bpo-36829: Add sys.unraisablehook() (GH-13187)
by Victor Stinner
· 6 years ago
1a2252e
bpo-36594: Fix incorrect use of %p in format strings (GH-12769)
by Zackery Spytz
· 6 years ago
709d23d
bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)
by Victor Stinner
· 6 years ago
4312522
bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)
by Victor Stinner
· 6 years ago
34ef64f
bpo-36447, bpo-36447: Fix refleak in _PySys_InitMain() (GH-12586)
by Pablo Galindo
· 6 years ago
8b9dbc0
bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)
by Victor Stinner
· 6 years ago
2000495
bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)
by Victor Stinner
· 6 years ago
027b09c
bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)
by Stefan Krah
· 6 years ago
dcf6171
bpo-36236: Handle removed cwd at Python init (GH-12424)
by Victor Stinner
· 6 years ago
74f6568
bpo-36301: Add _PyWstrList structure (GH-12343)
by Victor Stinner
· 6 years ago
b35be4b
bpo-36142: Add _PyPreConfig.allocator (GH-12181)
by Victor Stinner
· 6 years ago
5a02e0d
bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)
by Victor Stinner
· 6 years ago
cad1f74
bpo-36142: Add _PyPreConfig structure (GH-12172)
by Victor Stinner
· 6 years ago
8ebc645
bpo-35890 : Fix some API calling consistency (GH-11742)
by Minmin Gong
· 7 years ago
4860f01
bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789)
by Tony Roberts
· 7 years ago
ab67281
bpo-35713: Reorganize sys module initialization (GH-11658)
by Victor Stinner
· 7 years ago
bf4ac2d
bpo-35713: Rework Python initialization (GH-11647)
by Victor Stinner
· 7 years ago
3607ef4
bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)
by Serhiy Storchaka
· 7 years ago
6fe9c44
bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(). (GH-9457)
by Serhiy Storchaka
· 7 years ago
a5b7616
remove doc-string declaration no longer used after AC conversion (GH-11444)
by Tal Einat
· 7 years ago
ede0b6f
bpo-20182: AC convert Python/sysmodule.c (GH-11328)
by Tal Einat
· 7 years ago
dffccc6
bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)
by Serhiy Storchaka
· 7 years ago
72ff7b4
bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-11063)
by Serhiy Storchaka
· 7 years ago
99d56b5
bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)
by Zackery Spytz
· 7 years ago
62be742
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
by Serhiy Storchaka
· 7 years ago
37cd982
bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)
by Victor Stinner
· 7 years ago
621cebe
bpo-35081: Rename internal headers (GH-10275)
by Victor Stinner
· 7 years ago
dce345c
Simplify sys.breakpointhook implementation (#9519)
by Anthony Sottile
· 7 years ago
a1c249c
bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)
by Victor Stinner
· 7 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 7 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 7 years ago
2be00d9
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
by Victor Stinner
· 7 years ago
e1b2995
bpo-32030: Make _PySys_AddXOptionWithError() private (GH-10236)
by Victor Stinner
· 7 years ago
49c75a8
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152)
by Pablo Galindo
· 7 years ago
fbca908
bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)
by Victor Stinner
· 7 years ago
b2457ef
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
by Victor Stinner
· 7 years ago
caba55b
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
by Victor Stinner
· 7 years ago
f60bf0e
bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)
by Serhiy Storchaka
· 7 years ago
b193fa9
bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834)
by Carl Meyer
· 7 years ago
55edd0c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
by Siddhesh Poyarekar
· 7 years ago
bc77eff
bpo-33042: Fix pre-initialization sys module configuration (GH-6157)
by Nick Coghlan
· 7 years ago
aa0735f
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
by oldk
· 8 years ago
fc2f407
bpo-32591: Add native coroutine origin tracking (#5250)
by Nathaniel J. Smith
· 8 years ago
a5552f0
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
by Serhiy Storchaka
· 8 years ago
41264f1
bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)
by Victor Stinner
· 8 years ago
11a247d
bpo-32030: Add _PyPathConfig_ComputeArgv0() (#4845)
by Victor Stinner
· 8 years ago
d5dda98
pymain_set_sys_argv() now copies argv (#4838)
by Victor Stinner
· 8 years ago
91106cd
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
by Victor Stinner
· 8 years ago
4ae06c5
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748)
by Serhiy Storchaka
· 8 years ago
Next »