[issue15922] make howto/urllib2.rst doctests pass

2012-10-09 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue15922] make howto/urllib2.rst doctests pass

2012-10-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset b2f282991973 by Senthil Kumaran in branch '2.7': Fix Issue 15922: make howto/urllib2.rst doctests pass. http://hg.python.org/cpython/rev/b2f282991973 -- ___ Python tracker

[issue15922] make howto/urllib2.rst doctests pass

2012-10-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks, Senthil! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue15922] make howto/urllib2.rst doctests pass

2012-10-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset a6f37d503878 by Senthil Kumaran in branch '3.2': Fix Issue 15922: make howto/urllib2.rst doctests pass. http://hg.python.org/cpython/rev/a6f37d503878 New changeset a24d3e2124b6 by Senthil Kumaran in branch '3.3': Fix Issue 15922: make howto/urllib2.

[issue15922] make howto/urllib2.rst doctests pass

2012-09-17 Thread Ezio Melotti
Ezio Melotti added the comment: +>>> try: +... urllib.request.urlopen(req) +... except urllib.error.URLError as e: +...print("Error opening url.") +...# E.g. "[Errno 8] nodename nor servname provided, or not known" +...print("Reason:", e.reason) #doctest:

[issue15922] make howto/urllib2.rst doctests pass

2012-09-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue15922] make howto/urllib2.rst doctests pass

2012-09-11 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue15922] make howto/urllib2.rst doctests pass

2012-09-11 Thread Chris Jerdonek
New submission from Chris Jerdonek: This issue is to make the doctests in howto/urllib2.rst pass using vanilla doctest. Patch attached. -- assignee: docs@python components: Documentation files: issue-doctest-howto-urllib-1.patch keywords: easy, patch messages: 170305 nosy: cjerdonek, d