cpython/Objects
Guido van Rossum c600411755 * mpzmodule.c: removed redundant mpz_print function.
* object.[ch], bltinmodule.c, fileobject.c: changed str() to call
  strobject() which calls an object's __str__ method if it has one.
  strobject() is also called by writeobject() when PRINT_RAW is passed.
* ceval.c: rationalize code for PRINT_ITEM (no change in function!)
* funcobject.c, codeobject.c: added compare and hash functionality.
  Functions with identical code objects and the same global dictionary are
  equal.  Code objects are equal when their code, constants list and names
  list are identical (i.e. the filename and code name don't count).
  (hash doesn't work yet since the constants are in a list and lists can't
  be hashed -- suppose this should really be done with a tuple now we have
  resizetuple!)
1993-11-05 10:22:19 +00:00
..
accessobject.c Several optimizations and speed improvements. 1993-10-22 12:04:32 +00:00
classobject.c Several optimizations and speed improvements. 1993-10-22 12:04:32 +00:00
dictobject.c Added getmappingsize(). (Needed by previous checkin of posixmodule.c) 1993-11-05 10:18:44 +00:00
fileobject.c * mpzmodule.c: removed redundant mpz_print function. 1993-11-05 10:22:19 +00:00
floatobject.c * Extended X interface: pixmap objects, colormap objects visual objects, 1993-10-11 12:54:31 +00:00
frameobject.c * clmodule.c (doParams): free PVbuffer in error condition. 1993-08-03 15:11:36 +00:00
funcobject.c Added compare operations for functions and code objects. 1993-11-05 10:20:10 +00:00
intobject.c Changes to make range checks portable to 64-bit machines. 1993-10-26 15:21:51 +00:00
listobject.c * listobject.c (list_ass_slice): XDECREF instead of DECREF so 1993-10-27 14:56:44 +00:00
longobject.c * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, 1993-11-01 16:28:59 +00:00
mappingobject.c Added getmappingsize(). (Needed by previous checkin of posixmodule.c) 1993-11-05 10:18:44 +00:00
methodobject.c * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, 1993-11-01 16:28:59 +00:00
moduleobject.c * classobject.c: in instance_getattr, don't make a method out of a 1993-05-25 09:38:27 +00:00
object.c * mpzmodule.c: removed redundant mpz_print function. 1993-11-05 10:22:19 +00:00
rangeobject.c * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range 1993-11-01 16:21:44 +00:00
stringobject.c Fixed bugs in resizetuple and extended the interface. 1993-11-01 13:46:50 +00:00
tupleobject.c Fixed bugs in resizetuple and extended the interface. 1993-11-01 13:46:50 +00:00
typeobject.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
xxobject.c * pythonrun.c: Print exception type+arg *after* stack trace instead of 1993-05-12 08:24:20 +00:00