summaryrefslogtreecommitdiffstats
path: root/Objects/moduleobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1/+1
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-2/+2
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-7/+2
* Get rid of more uses of string and use const in a few places.Neal Norwitz2007-08-261-8/+8
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-2/+2
* Kill two innocuous compiler warnings.Guido van Rossum2007-05-151-1/+0
* More coding by random modification.Guido van Rossum2007-05-041-2/+5
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+1
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-4/+4
* Make the word "module" appear in the error string for calling theMichael W. Hudson2004-09-141-1/+1
* Remove code that tried to warn about shadowing builtin names after aNeil Schemenauer2003-07-161-66/+1
* Warn about creating global variables by __setattr__ that shadow builtinNeil Schemenauer2003-06-091-1/+66
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-2/+2
* Add a docstring to the module type.Guido van Rossum2002-06-041-1/+7
* Surprising fix for SF bug 563060: module can be used as base class.Guido van Rossum2002-06-041-3/+16
* PyObject_GC_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Fix for SF bug #529050 - ModuleType.__new__ crash.Guido van Rossum2002-03-121-7/+19
* Add missing "static" declarations (found by "make smelly").Neil Schemenauer2001-10-211-1/+1
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-1/+2
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-1/+1
* Use new GC API.Neil Schemenauer2001-08-291-6/+6