[Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py,1.21,1.22

Tim Peters tim.one@comcast.net
Sat, 23 Mar 2002 03:33:21 -0500


> tighten up except - int() only raises ValueError

Maybe in context?  int() can also raise OverflowError and TypeError (e.g.,
int(1L << 500) and int(1j), respectively).