COMMITS
/ Objects/moduleobject.c July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 27, 2019
V
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner committed
May 14, 2019
V
bpo-36900: Replace global conf vars with config (GH-13299)
Victor Stinner committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
October 30, 2018
S
bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398)
Serhiy Storchaka committed
September 10, 2018
P
Fix misleading mentions of tp_size in comments (GH-9093)
Peter Eisentraut committed
August 3, 2018
V
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner committed
April 29, 2018
S
bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606)
Serhiy Storchaka committed
March 17, 2018
M
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
Marcel Plch committed
December 14, 2017
I
bpo-32225: Implementation of PEP 562 (#4731)
Ivan Levkivskyi committed
September 19, 2017
O
September 14, 2017
E
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow committed
E
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
September 4, 2017
E
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow committed
March 19, 2017
S
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka committed
November 21, 2016
S
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
Serhiy Storchaka committed
November 20, 2016
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
S
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka committed
November 16, 2016
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
September 26, 2016
S
Issue #27914: Fixed a comment in PyModule_ExcDef.
Serhiy Storchaka committed
August 21, 2016
N
Merge #27782 fix from 3.5
Nick Coghlan committed
N
Issue #27782: Fix m_methods handling in multiphase init
Nick Coghlan committed
August 19, 2016
B
Issue #12946: Remove dead code in PyModule_GetDict
Berker Peksag committed
April 6, 2016
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
December 24, 2015
S
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka committed
May 23, 2015
N
Issue #24268: Address some PEP 489 refleaks
Nick Coghlan committed
N
PEP 489: Multi-phase extension module initialization
Nick Coghlan committed
March 18, 2015
S
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka committed
April 24, 2014
B
sprinkle some _PyId goodness around moduleobject.c
Benjamin Peterson committed
B
do not override errors from descriptors on modules
Benjamin Peterson committed
E
Issue8297: module attribute lookup failures now include module name in error message.
Ethan Furman committed
February 12, 2014
S
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka committed
S
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka committed
February 10, 2014
S
Issue #19255: The builtins module is restored to initial value before
Serhiy Storchaka committed
November 22, 2013
E
Implement PEP 451 (ModuleSpec).
Eric Snow committed
July 31, 2013
May 4, 2013
B
#17115,17116: Have modules initialize the __package__ and __loader__
Brett Cannon committed
July 19, 2012
M
Issue #15394: Fix ref leaks in PyModule_Create.
Meador Inge committed
M
Issue #15394: Fix ref leaks in PyModule_Create.
Meador Inge committed
May 25, 2012
E
issue 14660: Implement PEP 420, namespace packages.
Eric V. Smith committed
April 29, 2012
B
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Brett Cannon committed
October 14, 2011
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
October 10, 2011
M
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
May 24, 2011
B
indicate return value on __dir__ methods
Benjamin Peterson committed