| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-108867: Add PyThreadState_GetUnchecked() function (#108870) | Victor Stinner | 2023-10-03 | 1 | -1/+1 |
|
|
* | bpo-45459: C API uses type names rather than structure names (GH-31528) | Victor Stinner | 2022-02-24 | 1 | -3/+3 |
|
|
* | bpo-45459: Add pytypedefs.h header file (GH-31527) | Victor Stinner | 2022-02-24 | 1 | -10/+0 |
|
|
* | bpo-45434: Remove useless space in includes (GH-28963) | Victor Stinner | 2021-10-14 | 1 | -1/+1 |
|
|
* | pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921) | Victor Stinner | 2021-10-13 | 1 | -10/+2 |
|
|
* | Update code comment re: location of struct _is. (GH-20067) | Chris Jerdonek | 2020-05-15 | 1 | -1/+1 |
|
|
* | bpo-40421: Add pyframe.h header file (GH-19755) | Victor Stinner | 2020-04-28 | 1 | -2/+1 |
|
|
* | bpo-40268: Remove explicit pythread.h includes (#19529) | Victor Stinner | 2020-04-15 | 1 | -2/+0 |
|
|
* | bpo-39947: Add PyThreadState_GetID() function (GH-19163) | Victor Stinner | 2020-03-25 | 1 | -0/+1 |
|
|
* | bpo-39947: Add PyThreadState_GetFrame() function (GH-19092) | Victor Stinner | 2020-03-20 | 1 | -1/+2 |
|
|
* | bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981) | Victor Stinner | 2020-03-13 | 1 | -0/+5 |
|
|
* | bpo-39947: Add PyInterpreterState_Get() function (GH-18979) | Victor Stinner | 2020-03-13 | 1 | -0/+11 |
|
|
* | bpo-37878: Remove PyThreadState_DeleteCurrent() function (GH-15315) | Joannah Nanjekye | 2019-09-05 | 1 | -1/+0 |
|
|
* | bpo-36124: Add PyInterpreterState.dict. (gh-12132) | Eric Snow | 2019-03-15 | 1 | -2/+8 |
|
|
* | bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) | Victor Stinner | 2019-03-01 | 1 | -1/+0 |
|
|
* | bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) | Eric Snow | 2019-02-23 | 1 | -14/+12 |
|
|
* | bpo-35134: Don't define types twice in header files (GH-10754) | Victor Stinner | 2018-11-27 | 1 | -17/+20 |
|
|
* | bpo-35134: Create Include/cpython/pystate.h (GH-10733) | Victor Stinner | 2018-11-26 | 1 | -281/+3 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
|
|
* | bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) | Victor Stinner | 2018-11-01 | 1 | -25/+31 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -1/+1 |
|
|
* | bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) | Victor Stinner | 2018-10-30 | 1 | -4/+3 |
|
|
* | bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) | Victor Stinner | 2018-08-29 | 1 | -2/+6 |
|
|
* | bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) | Victor Stinner | 2018-08-03 | 1 | -0/+7 |
|
|
* | bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) | Victor Stinner | 2018-08-01 | 1 | -255/+1 |
|
|
* | bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594) | Victor Stinner | 2018-08-01 | 1 | -8/+8 |
|
|
* | bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) | Victor Stinner | 2018-08-01 | 1 | -1/+8 |
|
|
* | bpo-34170, test_embed: write Py_Initialize() tests (GH-8484) | Victor Stinner | 2018-07-26 | 1 | -1/+6 |
|
|
* | bpo-34170: Cleanup pymain_read_conf() (GH-8476) | Victor Stinner | 2018-07-26 | 1 | -2/+7 |
|
|
* | bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468) | Victor Stinner | 2018-07-26 | 1 | -5/+14 |
|
|
* | bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467) | Victor Stinner | 2018-07-25 | 1 | -0/+1 |
|
|
* | bpo-34170: Add _Py_InitializeFromConfig() (GH-8454) | Victor Stinner | 2018-07-25 | 1 | -2/+1 |
|
|
* | bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447) | Victor Stinner | 2018-07-24 | 1 | -2/+142 |
|
|
* | bpo-34170: Add _PyCoreConfig.isolated (GH-8417) | Victor Stinner | 2018-07-24 | 1 | -4/+28 |
|
|
* | bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353) | Victor Stinner | 2018-07-21 | 1 | -0/+3 |
|
|
* | bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (... | Carl Meyer | 2018-06-16 | 1 | -1/+2 |
|
|
* | bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-... | Eric Snow | 2018-02-17 | 1 | -0/+4 |
|
|
* | bpo-32030: Add _PyCoreConfig.module_search_paths (#4954) | Victor Stinner | 2018-01-24 | 1 | -13/+27 |
|
|
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -0/+8 |
|
|
* | bpo-32591: Add native coroutine origin tracking (#5250) | Nathaniel J. Smith | 2018-01-21 | 1 | -0/+2 |
|
|
* | bpo-32030: Complete _PyCoreConfig_Read() (#4946) | Victor Stinner | 2017-12-20 | 1 | -1/+3 |
|
|
* | bpo-32030: Add _PyCoreConfig.warnoptions (#4936) | Victor Stinner | 2017-12-20 | 1 | -1/+8 |
|
|
* | bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611) | Marcel Plch | 2017-12-20 | 1 | -0/+3 |
|
|
* | bpo-32030: Add _PyCoreConfig.argv (#4934) | Victor Stinner | 2017-12-19 | 1 | -1/+9 |
|
|
* | bpo-29240, bpo-32030: Py_Main() re-reads config if encoding changes (#4899) | Victor Stinner | 2017-12-16 | 1 | -2/+6 |
|
|
* | bpo-32030: Add _PyMainInterpreterConfig.executable (#4876) | Victor Stinner | 2017-12-15 | 1 | -6/+9 |
|
|
* | bpo-32030: Add _PyMainInterpreterConfig.warnoptions (#4855) | Victor Stinner | 2017-12-14 | 1 | -0/+2 |
|
|
* | bpo-32030: Rewrite _PyMainInterpreterConfig (#4854) | Victor Stinner | 2017-12-14 | 1 | -6/+7 |
|
|
* | bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) | Victor Stinner | 2017-12-13 | 1 | -0/+1 |
|
|
* | bpo-32030: Add pymain_get_global_config() (#4735) | Victor Stinner | 2017-12-06 | 1 | -4/+6 |
|
|