index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
moduleobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
bpo-31492: Fix assertion failures in case of a module with a bad __name__ att...
Oren Milman
2017-09-19
1
-4/+1
*
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow
2017-09-14
1
-3/+9
*
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow
2017-09-14
1
-9/+3
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
1
-3/+9
*
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka
2017-03-19
1
-17/+24
[next]