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 MarmiteFox
Recipients MarmiteFox, docs@python
Date 2018-01-17.18:00:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516212055.1.0.467229070634.issue32586@psf.upfronthosting.co.za>
In-reply-to
Content
In the HOWTO for urllib2 for Python 2, in the Handling Exceptions section, it discusses the URLError exception being raised by urlopen() (https://docs.python.org/2/howto/urllib2.html#urlerror). The code snippet example for this has (I think) a minor error:
the 3rd line reads:
"except URLError as e:"
which I think should be:
"except urllib2.URLError as e:"

The code as given only works if urllib2 had been imported via:
"from urllib2 import *"
The snippet doesn't list the import statements but all the other examples just use "import urllib2" (and obviously "from x import *" is bad practice anyway and wouldn't be encouraged or expected).

I am relatively new to Python, so it's possible it *is* correct and I just implemented it incorrectly. But if not, it would be helpful to correct it (even though it's a very minor error) so that other newbies like me don't come unstuck when using the tutorial.
History
Date User Action Args
2018-01-17 18:00:55MarmiteFoxsetrecipients: + MarmiteFox, docs@python
2018-01-17 18:00:55MarmiteFoxsetmessageid: <1516212055.1.0.467229070634.issue32586@psf.upfronthosting.co.za>
2018-01-17 18:00:55MarmiteFoxlinkissue32586 messages
2018-01-17 18:00:54MarmiteFoxcreate