Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
ab67281e95de1a88c4379a75a547f19a8ba5ec30
/
Python
/
sysmodule.c
ab67281
bpo-35713: Reorganize sys module initialization (GH-11658)
by Victor Stinner
· 6 years ago
bf4ac2d
bpo-35713: Rework Python initialization (GH-11647)
by Victor Stinner
· 6 years ago
3607ef4
bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)
by Serhiy Storchaka
· 6 years ago
6fe9c44
bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(). (GH-9457)
by Serhiy Storchaka
· 6 years ago
a5b7616
remove doc-string declaration no longer used after AC conversion (GH-11444)
by Tal Einat
· 6 years ago
ede0b6f
bpo-20182: AC convert Python/sysmodule.c (GH-11328)
by Tal Einat
· 6 years ago
dffccc6
bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)
by Serhiy Storchaka
· 6 years ago
72ff7b4
bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-11063)
by Serhiy Storchaka
· 6 years ago
99d56b5
bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)
by Zackery Spytz
· 6 years ago
62be742
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
by Serhiy Storchaka
· 6 years ago
37cd982
bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)
by Victor Stinner
· 6 years ago
621cebe
bpo-35081: Rename internal headers (GH-10275)
by Victor Stinner
· 6 years ago
dce345c
Simplify sys.breakpointhook implementation (#9519)
by Anthony Sottile
· 6 years ago
a1c249c
bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)
by Victor Stinner
· 6 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 6 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 6 years ago
2be00d9
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
by Victor Stinner
· 6 years ago
e1b2995
bpo-32030: Make _PySys_AddXOptionWithError() private (GH-10236)
by Victor Stinner
· 6 years ago
49c75a8
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152)
by Pablo Galindo
· 6 years ago
fbca908
bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)
by Victor Stinner
· 6 years ago
b2457ef
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
by Victor Stinner
· 6 years ago
caba55b
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
by Victor Stinner
· 6 years ago
f60bf0e
bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)
by Serhiy Storchaka
· 6 years ago
b193fa9
bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834)
by Carl Meyer
· 6 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
· 7 years ago
fc2f407
bpo-32591: Add native coroutine origin tracking (#5250)
by Nathaniel J. Smith
· 7 years ago
a5552f0
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
by Serhiy Storchaka
· 7 years ago
41264f1
bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)
by Victor Stinner
· 7 years ago
11a247d
bpo-32030: Add _PyPathConfig_ComputeArgv0() (#4845)
by Victor Stinner
· 7 years ago
d5dda98
pymain_set_sys_argv() now copies argv (#4838)
by Victor Stinner
· 7 years ago
91106cd
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
by Victor Stinner
· 7 years ago
4ae06c5
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748)
by Serhiy Storchaka
· 7 years ago
6bf992a
bpo-32030: Add pymain_get_global_config() (#4735)
by Victor Stinner
· 7 years ago
5e3806f
bpo-32101: Add PYTHONDEVMODE environment variable (#4624)
by Victor Stinner
· 7 years ago
f7e5b56
bpo-32030: Split Py_Main() into subfunctions (#4399)
by Victor Stinner
· 7 years ago
ae3087c
Move exc state to generator. Fixes bpo-25612 (#1773)
by Mark Shannon
· 7 years ago
36c1d1f
PEP 553 built-in breakpoint() function (bpo-31353) (#3355)
by Barry Warsaw
· 7 years ago
3f9eee6
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
by Eric Snow
· 7 years ago
d393c1b
bpo-28411: Isolate PyInterpreterState.modules (#3575)
by Eric Snow
· 7 years ago
dae0276
bpo-30860: Fix a refleak. (#3567)
by Eric Snow
· 7 years ago
93c92f7
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
by Eric Snow
· 7 years ago
8728018
bpo-30860: Fix a refleak. (#3506)
by Eric Snow
· 7 years ago
2ebc5ce
bpo-30860: Consolidate stateful runtime globals. (#3397)
by Eric Snow
· 7 years ago
5a85167
bpo-31344: Per-frame control of trace events (GH-3417)
by Nick Coghlan
· 7 years ago
a6a4dc8
bpo-31370: Remove support for threads-less builds (#3385)
by Antoine Pitrou
· 7 years ago
05351c1
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
by Eric Snow
· 7 years ago
76d5abc
bpo-30860: Consolidate stateful runtime globals. (#2594)
by Eric Snow
· 7 years ago
86b7afd
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
by Eric Snow
· 7 years ago
6b42eb1
bpo-29585: Fix sysconfig.get_config_var("PYTHONFRAMEWORK") (GH-2483)
by INADA Naoki
· 7 years ago
a8f8d5b
bpo-29585: optimize site.py startup time (GH-136)
by INADA Naoki
· 7 years ago
865de27
bpo-30598: _PySys_EndInit() now duplicates warnoptions (#1998)
by Victor Stinner
· 7 years ago
48fb766
bpo-30567: Fix refleak in sys.getwindowsversion (#1940)
by Segev Finer
· 7 years ago
6b4be19
bpo-22257: Small changes for PEP 432. (#1728)
by Eric Snow
· 7 years ago
5c4b0d0
bpo-27593: Get SCM build info from git instead of hg. (#446)
by Ned Deily
· 8 years ago
72e81d0
bpo-29556: Remove unused #include <langinfo.h> (#98)
by Yen Chi Hsuan
· 8 years ago
228b12e
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
by Serhiy Storchaka
· 8 years ago
7e42541
Use _PyObject_CallMethodIdObjArgs()
by Victor Stinner
· 8 years ago
f17c3de
Use _PyObject_CallNoArg()
by Victor Stinner
· 8 years ago
7bfb42d
Issue #28858: Remove _PyObject_CallArg1() macro
by Victor Stinner
· 8 years ago
de4ae3d
Backed out changeset b9c9691c72c5
by Victor Stinner
· 8 years ago
d6958ac
Add sys.getandroidapilevel()
by Victor Stinner
· 8 years ago
27580c1
Replace PyObject_CallFunctionObjArgs() with fastcall
by Victor Stinner
· 8 years ago
048afd9
Remove CALL_PROFILE special build
by Victor Stinner
· 8 years ago
85b0f5b
Added the const qualifier to char* variables that refer to readonly internal
by Serhiy Storchaka
· 8 years ago
a98c4a9
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
by Serhiy Storchaka
· 8 years ago
0651583
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
by Serhiy Storchaka
· 8 years ago
0cae609
Use PyThreadState_GET() in performance critical code
by Victor Stinner
· 8 years ago
7d76c90
Issue #28616: merge from 3.5
by Ned Deily
· 8 years ago
da4887a
Issue #28616: Correct help for sys.version_info releaselevel component.
by Ned Deily
· 8 years ago
74f4af7
Issue #27932: Prevent memory leak in win32_ver().
by Steve Dower
· 8 years ago
1ec262b
Issue #27932: Prevent memory leak in win32_ver().
by Steve Dower
· 8 years ago
4fd64b9
remove ceval timestamp support
by Benjamin Peterson
· 8 years ago
87672d7
Issue #28003: Fix a compiler warning
by Yury Selivanov
· 8 years ago
eb63645
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
by Yury Selivanov
· 8 years ago
cc16be8
Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)
by Steve Dower
· 8 years ago
10108a7
Issue #27355: Removed support for Windows CE. It was never finished,
by Larry Hastings
· 8 years ago
559bb6a
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
by Victor Stinner
· 8 years ago
c3ccaae
sys_pyfile_write_unicode() now uses fast call
by Victor Stinner
· 8 years ago
78da82b
call_trampoline() now uses fast call
by Victor Stinner
· 8 years ago
5553231
- Issue #23968: Rename the platform directory from plat-$(MACHDEP) to
by doko@ubuntu.com
· 8 years ago
1845d14
Issue #17905: Do not guard locale include with HAVE_LANGINFO_H.
by Stefan Krah
· 9 years ago
ec39756
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
34be807
Add PYTHONMALLOC env var
by Victor Stinner
· 9 years ago
b56837a
Merge 3.5
by Victor Stinner
· 9 years ago
bfd316e
Add _PyThreadState_UncheckedGet()
by Victor Stinner
· 9 years ago
576f132
Issue #20440: Cleaning up the code by using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
2d06e84
Issue #25923: Added the const qualifier to static constant arrays.
by Serhiy Storchaka
· 9 years ago
cf01b68
sysmodule.c: reuse Py_STRINGIFY() macro
by Victor Stinner
· 9 years ago
50856d5
sys.setrecursionlimit() now raises RecursionError
by Victor Stinner
· 9 years ago
d8cf382
Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private
by Yury Selivanov
· 9 years ago
baa2e56
use our normal bracing style
by Benjamin Peterson
· 9 years ago
1dde177
Issue #24017: Plug ref leak.
by Yury Selivanov
· 9 years ago
7544508
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
by Yury Selivanov
· 9 years ago
e134a7f
Issue #23752: _Py_fstat() is now responsible to raise the Python exception
by Victor Stinner
· 10 years ago
3e96f32
Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks.
by Steve Dower
· 10 years ago
f2f373f
Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows.
by Steve Dower
· 10 years ago
82e07b9
Issue #23181: More "codepoint" -> "code point".
by Serhiy Storchaka
· 10 years ago
d3faf43
Issue #23181: More "codepoint" -> "code point".
by Serhiy Storchaka
· 10 years ago
Next »