cpython/Objects
Sjoerd Mullender 842d2ccdcd intobject.c: Save references to small integers, so that they can be
shared.  The default is to save references to the integers in
	the range -1..99.  The lower limit can be set by defining
	NSMALLNEGINTS (absolute value of smallest integer to be saved)
	and NSMALLPOSINTS (1 more than the largest integer to be
	saved).
tupleobject.c: Save a reference to the empty tuple to be returned
	whenever a tuple of size 0 is requested.  Tuples of size 1
	upto, but not including, MAXSAVESIZE (default 20) are put in
	free lists when deallocated.  When MAXSAVESIZE equals 1, only
	share references to the empty tuple, when MAXSAVESIZE equals
	0, don't include the code at all and revert to the old
	behavior.
object.c: Print some more statistics when COUNT_ALLOCS is defined.
1993-10-15 16:18:48 +00:00
..
accessobject.c * accessobject.c (ownercheck): allow a base class access to protected 1993-07-11 19:55:34 +00:00
classobject.c Makefile, import.c: Lance's alternative module search (allow .pyc file 1993-10-15 13:01:11 +00:00
dictobject.c Minor fixes / changes for Mac compatibility. 1993-07-29 08:25:09 +00:00
fileobject.c * Makefile: added all: and default: targets. 1993-07-05 10:31:29 +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 Several changes in one: 1993-05-19 14:50:45 +00:00
intobject.c intobject.c: Save references to small integers, so that they can be 1993-10-15 16:18:48 +00:00
listobject.c * Extended X interface: pixmap objects, colormap objects visual objects, 1993-10-11 12:54:31 +00:00
longobject.c * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. 1993-06-17 12:35:49 +00:00
mappingobject.c Minor fixes / changes for Mac compatibility. 1993-07-29 08:25:09 +00:00
methodobject.c * Lots of small changes related to access. 1993-05-21 19:56:10 +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 intobject.c: Save references to small integers, so that they can be 1993-10-15 16:18:48 +00:00
stringobject.c * Extended X interface: pixmap objects, colormap objects visual objects, 1993-10-11 12:54:31 +00:00
tupleobject.c intobject.c: Save references to small integers, so that they can be 1993-10-15 16:18:48 +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