[Python-checkins] cpython (3.5): Fix userinfo example presented in urllib2 howto.

senthil.kumaran python-checkins at python.org
Fri Feb 5 22:39:52 EST 2016


https://hg.python.org/cpython/rev/aca6b47a260c
changeset:   100169:aca6b47a260c
branch:      3.5
parent:      100160:eb69070e5382
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Fri Feb 05 19:37:23 2016 -0800
summary:
  Fix userinfo example presented in urllib2 howto.

files:
  Doc/howto/urllib2.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst
--- a/Doc/howto/urllib2.rst
+++ b/Doc/howto/urllib2.rst
@@ -514,7 +514,7 @@
 e.g. "http://example.com/" *or* an "authority" (i.e. the hostname,
 optionally including the port number) e.g. "example.com" or "example.com:8080"
 (the latter example includes a port number).  The authority, if present, must
-NOT contain the "userinfo" component - for example "joe at password:example.com" is
+NOT contain the "userinfo" component - for example "joe:password at example.com" is
 not correct.
 
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list