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
*
[3.7] Fix misleading mentions of tp_size in comments. (GH-9136)
Benjamin Peterson
2018-09-10
1
-2/+2
*
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
Miss Islington (bot)
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
*
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
Serhiy Storchaka
2016-11-21
1
-1/+1
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-2/+2
*
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka
2016-11-20
1
-4/+4
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-1/+1
|
\
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-1/+1
*
|
Issue #27914: Fixed a comment in PyModule_ExcDef.
Serhiy Storchaka
2016-09-26
1
-1/+1
*
|
Merge #27782 fix from 3.5
Nick Coghlan
2016-08-21
1
-29/+35
|
\
\
|
|
/
|
*
Issue #27782: Fix m_methods handling in multiphase init
Nick Coghlan
2016-08-21
1
-29/+35
*
|
Issue #12946: Remove dead code in PyModule_GetDict
Berker Peksag
2016-08-19
1
-2/+1
|
/
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-2/+1
*
Issue #24268: Address some PEP 489 refleaks
Nick Coghlan
2015-05-23
1
-0/+1
*
PEP 489: Multi-phase extension module initialization
Nick Coghlan
2015-05-23
1
-52/+283
*
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka
2015-03-18
1
-1/+1
*
sprinkle some _PyId goodness around moduleobject.c
Benjamin Peterson
2014-04-24
1
-9/+19
*
do not override errors from descriptors on modules
Benjamin Peterson
2014-04-24
1
-10/+9
*
Issue8297: module attribute lookup failures now include module name in error ...
Ethan Furman
2014-04-24
1
-2/+26
*
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka
2014-02-12
1
-2/+4
|
\
|
*
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka
2014-02-12
1
-2/+4
*
|
Issue #19255: The builtins module is restored to initial value before
Serhiy Storchaka
2014-02-10
1
-5/+8
*
|
Implement PEP 451 (ModuleSpec).
Eric Snow
2013-11-22
1
-48/+5
*
|
Issue #18214: Improve finalization of Python modules to avoid setting their g...
Antoine Pitrou
2013-07-31
1
-8/+21
*
|
#17115,17116: Have modules initialize the __package__ and __loader__
Brett Cannon
2013-05-04
1
-13/+26
|
/
*
Issue #15394: Fix ref leaks in PyModule_Create.
Meador Inge
2012-07-19
1
-1/+7
|
\
|
*
Issue #15394: Fix ref leaks in PyModule_Create.
Meador Inge
2012-07-19
1
-1/+7
*
|
issue 14660: Implement PEP 420, namespace packages.
Eric V. Smith
2012-05-25
1
-2/+31
*
|
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Brett Cannon
2012-04-29
1
-1/+1
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-1/+1
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-1/+2
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-5/+4
*
|
indicate return value on __dir__ methods
Benjamin Peterson
2011-05-24
1
-1/+1
*
|
move specialized dir implementations into __dir__ methods (closes #12166)
Benjamin Peterson
2011-05-24
1
-1/+29
*
|
Issue #3080: Add PyModule_NewObject() function
Victor Stinner
2011-03-04
1
-7/+16
*
|
Issue #3080: Add PyModule_GetNameObject()
Victor Stinner
2011-02-23
1
-14/+29
|
/
*
#4236: avoid possible Fatal Error when import is called from __del__
R. David Murray
2010-12-14
1
-2/+3
*
Reverted accidental commit (from r87159)
Alexander Belopolsky
2010-12-10
1
-17/+3
*
Updated UCD version and unicode.org links to Unicode 6.0.0
Alexander Belopolsky
2010-12-10
1
-3/+17
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-1/+1
*
prefer clearing global objects to obscure module.__dict__ bugs #10068
Benjamin Peterson
2010-10-12
1
-4/+1
*
Issue #9425: Create PyModule_GetFilenameObject() function
Victor Stinner
2010-08-17
1
-7/+13
*
Issue #9425: Create PyErr_WarnFormat() function
Victor Stinner
2010-08-13
1
-10/+7
[next]