summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* added $& to $(LIB) target for SequentGuido van Rossum1995-01-171-1/+1
* fix reentrancy bug in slice assignmentGuido van Rossum1995-01-171-4/+20
* properly implement cmp() for class instancesGuido van Rossum1995-01-121-0/+31
* move coerce() from bltinmodule.c to object.c and implement builtin_coerce() d...Guido van Rossum1995-01-101-0/+33
* implement coercions involving instances properlyGuido van Rossum1995-01-101-1/+53
* fix memory leak and null pointer dereferenceGuido van Rossum1995-01-102-2/+6
* add restrictions in restricted modeGuido van Rossum1995-01-103-25/+45
* add builtins handling and restricted flagGuido van Rossum1995-01-101-2/+14
* * Objects/classobject.c: added 5th (function) parameter toGuido van Rossum1995-01-071-27/+49
* * Objects/methodobject.c: changed drastically, the object nowGuido van Rossum1995-01-071-27/+44
* Added __doc__ attribute (alias func_doc), initialized from firstGuido van Rossum1995-01-071-1/+16
* initialize __doc__ to NoneGuido van Rossum1995-01-071-0/+2
* added getattr(), supporting __doc__ and _name__Guido van Rossum1995-01-071-2/+33
* attribute-less object is AttributeError, not TypeErrorGuido van Rossum1995-01-071-1/+1
* Added 1995 to copyright message.Guido van Rossum1995-01-0419-47/+50
* * Objects/mappingobject.c (mappingremove): don't callGuido van Rossum1995-01-022-0/+6
* Lots of minor changes. Note for mappingobject.c: the hash table pointerGuido van Rossum1995-01-0212-96/+170
* fix comparison of instances without _-cmp__Guido van Rossum1994-11-101-3/+3
* Comparison of two class instances without __cmp__ or __rcmp__ methodsSjoerd Mullender1994-10-191-2/+5
* * Include/classobject.h, Objects/classobject.c, Python/ceval.c:Guido van Rossum1994-09-286-204/+219
* rearranged code in debugging version of DELREF to avoid touching dataGuido van Rossum1994-09-071-1/+2
* Yet another version (by me) of __getattr__ etc.Guido van Rossum1994-09-051-174/+51
* Mods (really diffs to 2.29) by Michael Scharf for alternative __getattr__ etc.Guido van Rossum1994-09-051-105/+204
* Merge back to main trunkGuido van Rossum1994-08-309-128/+258
* fix nasty bug in resizing (formatstring)Guido van Rossum1994-08-301-18/+98
* mods by Andrew Kuchling to implementGuido van Rossum1994-08-291-41/+240
* New patches by Andrew to fix various problemsGuido van Rossum1994-08-291-33/+67
* Correct problems found by THINK C 6.0Guido van Rossum1994-08-291-44/+67
* * configure.in, */Makefile*.in: OPT can now be specified in theGuido van Rossum1994-08-231-1/+2
* If an attribute is deleted, __setattr__ is called with 2 instead of 3Guido van Rossum1994-08-161-1/+5
* New patches by Andrew to fix various problemsGuido van Rossum1994-08-121-5/+24
* * Objects/classobject.c, Include/classobject.h: added __getattr__Guido van Rossum1994-08-121-17/+99
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-016-122/+229
* Added getmaxint() so sys can initialize sys.maxint.Guido van Rossum1993-12-242-9/+17
* * rangeobject.[ch], bltinmodule.c: incorporate new version of rangeGuido van Rossum1993-12-211-23/+127
* New fileGuido van Rossum1993-12-201-0/+66
* * import.c (get_module): pass .py filename to parse_file, not .pyc filename!Guido van Rossum1993-11-301-3/+6
* Fix lay-out of previous fix.Guido van Rossum1993-11-232-4/+8
* * timemodule.c: Add hack for Solaris 2.Guido van Rossum1993-11-234-16/+12
* * import.c (get_module): total rewrite, to ensure proper search order: forGuido van Rossum1993-11-171-21/+30
* Fix the fix :-(Guido van Rossum1993-11-111-1/+3
* Three micro fixes to formatstringGuido van Rossum1993-11-111-5/+4
* * parsermodule.c, Makefile, config.c: rudimentary interface to the PythonGuido van Rossum1993-11-102-2/+2
* * posixmodule.c: added set{uid,gid}.Guido van Rossum1993-11-104-6/+6
* * mpzmodule.c: removed redundant mpz_print function.Guido van Rossum1993-11-052-10/+41
* Added compare operations for functions and code objects.Guido van Rossum1993-11-051-1/+26
* Added getmappingsize(). (Needed by previous checkin of posixmodule.c)Guido van Rossum1993-11-052-0/+22
* * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c,Guido van Rossum1993-11-012-1/+2
* * fileobject.c (softspace): fix bug if called with NULL file.Guido van Rossum1993-11-011-1/+1
* * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from rangeGuido van Rossum1993-11-011-80/+28