| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-101758: Clean Up Uses of Import State (gh-101919) | Eric Snow | 2023-02-15 | 1 | -22/+3 |
|
|
* | gh-99947: Ensure unreported errors are chained for SystemError during import ... | Sebastian Berg | 2022-12-23 | 1 | -4/+5 |
|
|
* | gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516) | Eric Snow | 2022-11-16 | 1 | -0/+2 |
|
|
* | gh-81057: Move the Extension Modules Cache to _PyRuntimeState (gh-99355) | Eric Snow | 2022-11-11 | 1 | -3/+2 |
|
|
* | gh-99300: Use Py_NewRef() in Objects/ directory (#99354) | Victor Stinner | 2022-11-10 | 1 | -6/+3 |
|
|
* | gh-98627: Use a Switch in PyModule_FromDefAndSpec2() (gh-98734) | Eric Snow | 2022-10-27 | 1 | -14/+18 |
|
|
* | no-issue: Add assertion to PyModule_GetName for understanding (GH-32236) | Dong-hee Na | 2022-04-02 | 1 | -1/+3 |
|
|
* | bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31... | Mark Shannon | 2022-03-03 | 1 | -1/+2 |
|
|
* | bpo-45459: C API uses type names rather than structure names (GH-31528) | Victor Stinner | 2022-02-24 | 1 | -6/+6 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -37/+24 |
|
|
* | bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895) | Victor Stinner | 2021-10-12 | 1 | -0/+1 |
|
|
* | bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891) | Victor Stinner | 2021-10-11 | 1 | -1/+1 |
|
|
* | bpo-44717: improve AttributeError on circular imports of submodules (GH-27338) | Filipe Laíns | 2021-07-24 | 1 | -0/+30 |
|
|
* | Revert "bpo-44717: improve AttributeError on circular imports of submodules (... | Pablo Galindo Salgado | 2021-07-24 | 1 | -30/+0 |
|
|
* | bpo-44717: improve AttributeError on circular imports of submodules (GH-27299) | Filipe Laíns | 2021-07-24 | 1 | -0/+30 |
|
|
* | bpo-43770: Cleanup PyModuleDef_Init() (GH-26879) | Victor Stinner | 2021-06-23 | 1 | -2/+1 |
|
|
* | bpo-44486: Make sure that modules always have a dictionary. (GH-26847) | Mark Shannon | 2021-06-23 | 1 | -41/+61 |
|
|
* | bpo-43901: Fix refleaks in test_module (GH-25754) | Pablo Galindo | 2021-04-30 | 1 | -4/+11 |
|
|
* | Two minor fixes for accessing a module's name. (#25658) | larryhastings | 2021-04-30 | 1 | -6/+2 |
|
|
* | bpo-43901: Lazy-create an empty annotations dict in all unannotated user clas... | larryhastings | 2021-04-30 | 1 | -3/+69 |
|
|
* | bpo-40137: Add pycore_moduleobject.h internal header (GH-25507) | Victor Stinner | 2021-04-21 | 1 | -15/+4 |
|
|
* | bpo-42923: Dump extension modules on fatal error (GH-24207) | Victor Stinner | 2021-01-18 | 1 | -0/+13 |
|
|
* | bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) | Victor Stinner | 2020-12-01 | 1 | -3/+3 |
|
|
* | bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte... | Serhiy Storchaka | 2020-10-26 | 1 | -7/+21 |
|
|
* | bpo-40268: Remove unused structmember.h includes (GH-19530) | Victor Stinner | 2020-04-15 | 1 | -3/+3 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -1/+1 |
|
|
* | bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) | Victor Stinner | 2020-04-14 | 1 | -2/+2 |
|
|
* | bpo-40268: Include explicitly pycore_interp.h (GH-19505) | Victor Stinner | 2020-04-14 | 1 | -0/+1 |
|
|
* | bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) | Victor Stinner | 2020-04-13 | 1 | -2/+2 |
|
|
* | bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) | Victor Stinner | 2020-03-17 | 1 | -23/+13 |
|
|
* | bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) | Victor Stinner | 2020-03-13 | 1 | -2/+2 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -1/+1 |
|
|
* | bpo-39573: Add Py_SET_TYPE() function (GH-18394) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-39573: Add Py_SET_REFCNT() function (GH-18389) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) | Hai Shi | 2020-01-30 | 1 | -7/+4 |
|
|
* | bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212) | Victor Stinner | 2020-01-27 | 1 | -2/+5 |
|
|
* | bpo-33714: Output an exception raised in module's m_clear(). (GH-16592) | Serhiy Storchaka | 2019-10-08 | 1 | -1/+7 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -2/+1 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -2/+2 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -2/+2 |
|
|
* | bpo-36900: Replace global conf vars with config (GH-13299) | Victor Stinner | 2019-05-14 | 1 | -3/+7 |
|
|
* | bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) | Serhiy Storchaka | 2019-02-25 | 1 | -2/+3 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -1/+1 |
|
|
* | bpo-33237: Improve AttributeError message for partially initialized module. (... | Serhiy Storchaka | 2018-10-30 | 1 | -2/+39 |
|
|
* | Fix misleading mentions of tp_size in comments (GH-9093) | Peter Eisentraut | 2018-09-10 | 1 | -2/+2 |
|
|
* | bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) | Victor Stinner | 2018-08-03 | 1 | -3/+2 |
|
|
* | bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606) | Serhiy Storchaka | 2018-04-29 | 1 | -4/+6 |
|
|
* | bpo-32374: m_traverse may be called with m_state=NULL (GH-5140) | Marcel Plch | 2018-03-17 | 1 | -0/+21 |
|
|
* | bpo-32225: Implementation of PEP 562 (#4731) | Ivan Levkivskyi | 2017-12-14 | 1 | -4/+18 |
|
|