| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Quickly renamed the last directory. | Guido van Rossum | 1997-05-02 | 1 | -525/+537 |
|
|
* | Intern the various string objects created to speed up lookups. | Guido van Rossum | 1997-01-18 | 1 | -25/+25 |
|
|
* | Yet more elaborate message for exception in __del__. | Guido van Rossum | 1996-12-05 | 1 | -11/+23 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Support passing in an empty dictionary of keywords to newinstanceobject. | Guido van Rossum | 1996-10-21 | 1 | -1/+3 |
|
|
* | More detailed error message about exception in __del__ | Guido van Rossum | 1996-09-11 | 1 | -3/+6 |
|
|
* | Use getstringsize where available instead of strlen. | Guido van Rossum | 1996-08-26 | 1 | -1/+1 |
|
|
* | Be a bit more careful with printing a warning for a failed __del__. | Guido van Rossum | 1996-08-22 | 1 | -2/+5 |
|
|
* | More efficient handling of "__doc__" lookup. | Guido van Rossum | 1996-08-21 | 1 | -2/+8 |
|
|
* | Write warning about exception in __del__ to stderr, not stdout. | Guido van Rossum | 1996-08-20 | 1 | -1/+1 |
|
|
* | Disable support for access statement | Guido van Rossum | 1996-08-12 | 1 | -4/+27 |
|
|
* | Optimizations by Sjoerd: | Guido van Rossum | 1996-08-09 | 1 | -81/+172 |
|
|
* | Only __dict__ and __class__ are read-only instance attributes | Guido van Rossum | 1996-07-21 | 1 | -2/+4 |
|
|
* | new debugger symbol names | Guido van Rossum | 1996-05-23 | 1 | -6/+6 |
|
|
* | Added __name__ attribute to class instance method objects. | Guido van Rossum | 1996-05-14 | 1 | -7/+15 |
|
|
* | Get ordering right for TRACE_REFS/COUNT_ALLOCS combination (otherwise | Sjoerd Mullender | 1995-09-18 | 1 | -1/+1 |
|
|
* | Fixed calling of __del__ method with TRACE_REFS defined. | Sjoerd Mullender | 1995-08-28 | 1 | -1/+23 |
|
|
* | class objects are read-only in restricted mode | Guido van Rossum | 1995-08-04 | 1 | -0/+5 |
|
|
* | changes for keyword args to built-in functions and classes | Guido van Rossum | 1995-07-26 | 1 | -5/+6 |
|
|
* | args to call_object must be tuple or NULL | Guido van Rossum | 1995-07-12 | 1 | -6/+2 |
|
|
* | change comparing instance methods | Guido van Rossum | 1995-04-06 | 1 | -4/+3 |
|
|
* | removed unused vars | Guido van Rossum | 1995-01-26 | 1 | -1/+0 |
|
|
* | implement coercions involving instances properly | Guido van Rossum | 1995-01-10 | 1 | -1/+53 |
|
|
* | add restrictions in restricted mode | Guido van Rossum | 1995-01-10 | 1 | -24/+32 |
|
|
* | * Objects/classobject.c: added 5th (function) parameter to | Guido van Rossum | 1995-01-07 | 1 | -27/+49 |
|
|
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
|
|
* | Lots of minor changes. Note for mappingobject.c: the hash table pointer | Guido van Rossum | 1995-01-02 | 1 | -5/+4 |
|
|
* | fix comparison of instances without _-cmp__ | Guido van Rossum | 1994-11-10 | 1 | -3/+3 |
|
|
* | Comparison of two class instances without __cmp__ or __rcmp__ methods | Sjoerd Mullender | 1994-10-19 | 1 | -2/+5 |
|
|
* | * Include/classobject.h, Objects/classobject.c, Python/ceval.c: | Guido van Rossum | 1994-09-28 | 1 | -159/+160 |
|
|
* | Yet another version (by me) of __getattr__ etc. | Guido van Rossum | 1994-09-05 | 1 | -174/+51 |
|
|
* | Mods (really diffs to 2.29) by Michael Scharf for alternative __getattr__ etc. | Guido van Rossum | 1994-09-05 | 1 | -105/+204 |
|
|
* | If an attribute is deleted, __setattr__ is called with 2 instead of 3 | Guido van Rossum | 1994-08-16 | 1 | -1/+5 |
|
|
* | * Objects/classobject.c, Include/classobject.h: added __getattr__ | Guido van Rossum | 1994-08-12 | 1 | -17/+99 |
|
|
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -51/+51 |
|
|
* | * timemodule.c: Add hack for Solaris 2. | Guido van Rossum | 1993-11-23 | 1 | -8/+0 |
|
|
* | Several optimizations and speed improvements. | Sjoerd Mullender | 1993-10-22 | 1 | -7/+9 |
|
|
* | Makefile, import.c: Lance's alternative module search (allow .pyc file | Guido van Rossum | 1993-10-15 | 1 | -5/+18 |
|
|
* | * classobject.c: in instance_getattr, don't make a method out of a | Guido van Rossum | 1993-05-25 | 1 | -7/+8 |
|
|
* | * Lots of small changes related to access. | Guido van Rossum | 1993-05-21 | 1 | -31/+39 |
|
|
* | Access checks now work, at least for instance data (not for methods | Guido van Rossum | 1993-05-20 | 1 | -85/+173 |
|
|
* | Several changes in one: | Guido van Rossum | 1993-05-19 | 1 | -13/+136 |
|
|
* | Fix bug in class instance hash (forgot to clear error condition). | Guido van Rossum | 1993-04-08 | 1 | -3/+8 |
|
|
* | * Changed all copyright messages to include 1993. | Guido van Rossum | 1993-03-29 | 1 | -8/+60 |
|
|
* | * Changed many files to use mkvalue() instead of newtupleobject(). | Guido van Rossum | 1993-03-16 | 1 | -3/+3 |
|
|
* | bltinmodule.c: added round(x, [n]); coerce() of two class instances | Guido van Rossum | 1993-02-12 | 1 | -2/+2 |
|
|
* | * classobject.c: in instance_lenth, test result of call_object | Guido van Rossum | 1992-11-26 | 1 | -0/+2 |
|
|
* | * Makefile: added IMGFILE; moved some stuff around. | Guido van Rossum | 1992-09-17 | 1 | -25/+1 |
|
|
* | Made builtins int(), long(), float(), oct() and hex() more generic. | Guido van Rossum | 1992-09-12 | 1 | -0/+11 |
|
|
* | classobject.c moduleobject.c stdwinmodule.c xxobject.c: | Guido van Rossum | 1992-09-04 | 1 | -4/+14 |
|
|