summaryrefslogtreecommitdiff
path: root/Objects/moduleobject.c
Commit message (Expand)AuthorAgeFilesLines
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-4/+4
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | Issue #27914: Fixed a comment in PyModule_ExcDef.Serhiy Storchaka2016-09-261-1/+1
* | Merge #27782 fix from 3.5Nick Coghlan2016-08-211-29/+35
|\ \ | |/
| * Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-29/+35
* | Issue #12946: Remove dead code in PyModule_GetDictBerker Peksag2016-08-191-2/+1
|/
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Issue #24268: Address some PEP 489 refleaksNick Coghlan2015-05-241-0/+1
* PEP 489: Multi-phase extension module initializationNick Coghlan2015-05-231-52/+283
* Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-1/+1
* sprinkle some _PyId goodness around moduleobject.cBenjamin Peterson2014-04-241-9/+19
* do not override errors from descriptors on modulesBenjamin Peterson2014-04-241-10/+9
* Issue8297: module attribute lookup failures now include module name in error ...Ethan Furman2014-04-241-2/+26
* Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
* Issue #19255: The builtins module is restored to initial value beforeSerhiy Storchaka2014-02-101-5/+8
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-221-48/+5
* Issue #18214: Improve finalization of Python modules to avoid setting their g...Antoine Pitrou2013-07-311-8/+21
* #17115,17116: Have modules initialize the __package__ and __loader__Brett Cannon2013-05-041-13/+26
* Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-191-1/+7
|\
| * Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-191-1/+7
* | issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-241-2/+31
* | Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.Brett Cannon2012-04-291-1/+1
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* | Implement PEP 393.Martin v. Löwis2011-09-281-5/+4
* | indicate return value on __dir__ methodsBenjamin Peterson2011-05-241-1/+1
* | move specialized dir implementations into __dir__ methods (closes #12166)Benjamin Peterson2011-05-241-1/+29
* | Issue #3080: Add PyModule_NewObject() functionVictor Stinner2011-03-041-7/+16
* | Issue #3080: Add PyModule_GetNameObject()Victor Stinner2011-02-231-14/+29
|/
* #4236: avoid possible Fatal Error when import is called from __del__R. David Murray2010-12-141-2/+3
* Reverted accidental commit (from r87159)Alexander Belopolsky2010-12-101-17/+3
* Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-101-3/+17
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+1
* prefer clearing global objects to obscure module.__dict__ bugs #10068Benjamin Peterson2010-10-121-4/+1
* Issue #9425: Create PyModule_GetFilenameObject() functionVictor Stinner2010-08-171-7/+13
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-10/+7
* Issue #6697: Fix a crash if a module attribute name contains a surrogateVictor Stinner2010-05-191-8/+20
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-321/+321
* module_repr(): use %U to format the file nameVictor Stinner2010-05-071-5/+15
* Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-...Benjamin Peterson2009-11-131-1/+4
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #4838: When a module is deallocated, free the memory backing the option...Antoine Pitrou2009-01-171-0/+2
* Remove traces of Py_InitModule*.Georg Brandl2009-01-021-2/+2
* Issue #3740: Null-initialize module state.Martin v. Löwis2008-10-071-0/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-4/+4
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+155
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Merged revisions 59275-59303 via svnmerge fromChristian Heimes2007-12-031-0/+2