- ee09d7c Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. by Serhiy Storchaka · 11 years ago
- dc95424 Merged revisions 85392 via svnmerge from by Benjamin Peterson · 14 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
- 196b092 only clear a module's __dict__ if the module is the only one with a reference to it #7140 by Benjamin Peterson · 15 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- ef01d82 Implement PEP 366 by Nick Coghlan · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 20 years ago
- 7555294 Remove code that tried to warn about shadowing builtin names after a by Neil Schemenauer · 21 years ago
- 4e3363e Warn about creating global variables by __setattr__ that shadow builtin by Neil Schemenauer · 21 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- ed3e09f Add a docstring to the module type. by Guido van Rossum · 22 years ago
- c3a787e Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 22 years ago
- 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
- cd637aa Fix for SF bug #529050 - ModuleType.__new__ crash. by Guido van Rossum · 23 years ago
- f23473f Add missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
- 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
- 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
- e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
- 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
- 2907fe6 module_repr(): Instead of fixing the maximum buf size to 400, by Barry Warsaw · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 16cabc0 Repair "module has no attribute xxx" error msg; bug introduced when by Tim Peters · 24 years ago
- d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 24 years ago
- 10e31cf Add garbage collection for module objects. Closes patch #102939 and by Neil Schemenauer · 24 years ago
- 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- ee238b9 ANSI-fication of the sources. by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 98cc19f Patch by Chris Petrilli to display the origin of a module in its by Guido van Rossum · 26 years ago
- 2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
- f1dc061 Add internal routine _PyModule_Clear(), which does approximately what by Guido van Rossum · 27 years ago
- 0add15f removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. by Guido van Rossum · 28 years ago
- c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
- 27e916f apply dictclear to dict of deleted modules by Guido van Rossum · 30 years ago
- 8b14b4c initialize __doc__ to None by Guido van Rossum · 30 years ago
- 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
- c45611d * import.c (get_module): total rewrite, to ensure proper search order: for by Guido van Rossum · 31 years ago
- eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
- 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
- 2583165 Several changes in one: by Guido van Rossum · 31 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
- 94472a0 classobject.c moduleobject.c stdwinmodule.c xxobject.c: by Guido van Rossum · 32 years ago
- bab9d03 Copyright for 1992 added by Guido van Rossum · 33 years ago
- 2a59166 Lint by Guido van Rossum · 33 years ago
- 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
- 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
- f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
- 73531a3 Return -1 for errors. by Guido van Rossum · 34 years ago
- 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
- 0558a20 Added getmodulename() public interface. by Guido van Rossum · 34 years ago
- e87203a Added __dict to module getattr. New errors. by Guido van Rossum · 34 years ago
- 2b654f7 New error handling in getattr(). by Guido van Rossum · 34 years ago
- 85a5fbb Initial revision by Guido van Rossum · 34 years ago