[Python-checkins] CVS: python/dist/src/Objects abstract.c

Guido van Rossum guido@newcnri.cnri.reston.va.us
Thu, 13 Aug 1998 12:44:46 -0400


Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
	abstract.c 
Log Message:
Better error messages when a sequence is indexed with a non-integer.
Previously, this said "unsubscriptable object"; in 1.5.1, the reverse
problem existed, where None[''] would complain about a non-integer
index.  This fix does the right thing in all cases (for get, set and
del item).