[Python-checkins] CVS: python/dist/src/Lib cgi.py

Guido van Rossum guido@cnri.reston.va.us
Wed, 9 Dec 1998 17:16:48 -0500 (EST)


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

Modified Files:
	cgi.py 
Log Message:
In read_multi, allow a subclass to override the class we instantiate
when we create a recursive instance, by setting the class variable
'FieldStorageClass' to the desired class.  By default, this is set to
None, in which case we use self.__class__ (as before).