Alexnb wrote:
e = ''
try: ...except HTTPError, e: print e.code except URLError, e: print e.reasonif e == '':print "good to go"
footnote: here's a better way to test if an exception was raised or not:
try:
...
except HTTPError, e:
print e.code
except URLError, e:
print e.reason
else:
print "good to go"
</F>
--
http://mail.python.org/mailman/listinfo/python-list
