summaryrefslogtreecommitdiff
path: root/Objects/moduleobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] Fix misleading mentions of tp_size in comments (GH-9138)Benjamin Peterson2018-09-101-1/+1
* Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
* Merged revisions 85392 via svnmerge fromBenjamin Peterson2010-10-121-4/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-184/+184
* only clear a module's __dict__ if the module is the only one with a reference...Benjamin Peterson2009-10-151-1/+4
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-11/+11
* Renamed PyString to PyBytesChristian Heimes2008-05-261-11/+11
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Implement PEP 366Nick Coghlan2007-12-031-0/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-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
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-241-17/+2
* module_repr(): Instead of fixing the maximum buf size to 400,Barry Warsaw2001-08-161-6/+18
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-61/+40
* Repair "module has no attribute xxx" error msg; bug introduced whenTim Peters2001-05-121-1/+1
* Variant of patch #423262: Change module attribute get & setTim Peters2001-05-111-34/+35
* Add garbage collection for module objects. Closes patch #102939 andNeil Schemenauer2001-01-021-2/+27
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-5/+22
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* ANSI-fication of the sources.Fred Drake2000-07-091-21/+9
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* Patch by Chris Petrilli to display the origin of a module in itsGuido van Rossum1999-02-151-3/+30
* Replace fprintf(stderr, ...) with PySys_WriteStderr(...).Guido van Rossum1998-10-121-2/+2
* Add internal routine _PyModule_Clear(), which does approximately whatGuido van Rossum1998-02-191-1/+50
* removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits.Guido van Rossum1997-05-091-16/+2
* Quickly renamed the last directory.Guido van Rossum1997-05-021-63/+64
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Disable support for access statementGuido van Rossum1996-08-121-0/+6
* apply dictclear to dict of deleted modulesGuido van Rossum1995-01-261-1/+3
* initialize __doc__ to NoneGuido van Rossum1995-01-071-0/+2
* Added 1995 to copyright message.Guido van Rossum1995-01-041-2/+2
* Merge back to main trunkGuido van Rossum1994-08-301-5/+5
* * import.c (get_module): total rewrite, to ensure proper search order: forGuido van Rossum1993-11-171-21/+30