| Commit message (Expand) | Author | Age | Files | Lines |
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -11/+11 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -11/+11 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Implement PEP 366 | Nick Coghlan | 2007-12-03 | 1 | -0/+2 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -2/+1 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+1 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -4/+4 |
|
|
* | Make the word "module" appear in the error string for calling the | Michael W. Hudson | 2004-09-14 | 1 | -1/+1 |
|
|
* | Remove code that tried to warn about shadowing builtin names after a | Neil Schemenauer | 2003-07-16 | 1 | -66/+1 |
|
|
* | Warn about creating global variables by __setattr__ that shadow builtin | Neil Schemenauer | 2003-06-09 | 1 | -1/+66 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
|
|
* | Add a docstring to the module type. | Guido van Rossum | 2002-06-04 | 1 | -1/+7 |
|
|
* | Surprising fix for SF bug 563060: module can be used as base class. | Guido van Rossum | 2002-06-04 | 1 | -3/+16 |
|
|
* | PyObject_GC_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | Fix for SF bug #529050 - ModuleType.__new__ crash. | Guido van Rossum | 2002-03-12 | 1 | -7/+19 |
|
|
* | Add missing "static" declarations (found by "make smelly"). | Neil Schemenauer | 2001-10-21 | 1 | -1/+1 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -1/+1 |
|
|
* | Use new GC API. | Neil Schemenauer | 2001-08-29 | 1 | -6/+6 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -17/+2 |
|
|
* | module_repr(): Instead of fixing the maximum buf size to 400, | Barry Warsaw | 2001-08-16 | 1 | -6/+18 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -61/+40 |
|
|
* | Repair "module has no attribute xxx" error msg; bug introduced when | Tim Peters | 2001-05-12 | 1 | -1/+1 |
|
|
* | Variant of patch #423262: Change module attribute get & set | Tim Peters | 2001-05-11 | 1 | -34/+35 |
|
|
* | Add garbage collection for module objects. Closes patch #102939 and | Neil Schemenauer | 2001-01-02 | 1 | -2/+27 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -5/+22 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -21/+9 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -1/+1 |
|
|
* | Patch by Chris Petrilli to display the origin of a module in its | Guido van Rossum | 1999-02-15 | 1 | -3/+30 |
|
|
* | Replace fprintf(stderr, ...) with PySys_WriteStderr(...). | Guido van Rossum | 1998-10-12 | 1 | -2/+2 |
|
|
* | Add internal routine _PyModule_Clear(), which does approximately what | Guido van Rossum | 1998-02-19 | 1 | -1/+50 |
|
|
* | removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. | Guido van Rossum | 1997-05-09 | 1 | -16/+2 |
|
|
* | Quickly renamed the last directory. | Guido van Rossum | 1997-05-02 | 1 | -63/+64 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Disable support for access statement | Guido van Rossum | 1996-08-12 | 1 | -0/+6 |
|
|
* | apply dictclear to dict of deleted modules | Guido van Rossum | 1995-01-26 | 1 | -1/+3 |
|
|
* | initialize __doc__ to None | Guido van Rossum | 1995-01-07 | 1 | -0/+2 |
|
|
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
|
|
* | Merge back to main trunk | Guido van Rossum | 1994-08-30 | 1 | -5/+5 |
|
|
* | * import.c (get_module): total rewrite, to ensure proper search order: for | Guido van Rossum | 1993-11-17 | 1 | -21/+30 |
|
|
* | * classobject.c: in instance_getattr, don't make a method out of a | Guido van Rossum | 1993-05-25 | 1 | -2/+2 |
|
|
* | Access checks now work, at least for instance data (not for methods | Guido van Rossum | 1993-05-20 | 1 | -2/+3 |
|
|
* | Several changes in one: | Guido van Rossum | 1993-05-19 | 1 | -5/+16 |
|
|
* | * Changed all copyright messages to include 1993. | Guido van Rossum | 1993-03-29 | 1 | -2/+2 |
|
|
* | * Makefile: added IMGFILE; moved some stuff around. | Guido van Rossum | 1992-09-17 | 1 | -12/+1 |
|
|