This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jjlee
Recipients
Date 2005-05-19.20:12:08
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=261020

This is not correct, these exceptions are documented.

(from http://docs.python.org/lib/module-urllib2.html)

The following exceptions are raised as appropriate:

exception URLError
    The handlers raise this exception (or derived
exceptions) when they run into a problem. It is a subclass
of IOError. 

exception HTTPError
    A subclass of URLError, it can also function as a
non-exceptional file-like return value (the same thing that
urlopen() returns). This is useful when handling exotic HTTP
errors, such as requests for authentication. 

exception GopherError
    A subclass of URLError, this is the error raised by the
Gopher handler.
History
Date User Action Args
2007-08-23 14:21:18adminlinkissue944407 messages
2007-08-23 14:21:18admincreate