From: Senthil Kumaran Date: Sat, 6 Feb 2016 03:37:23 +0000 (-0800) Subject: Fix userinfo example presented in urllib2 howto. X-Git-Tag: v3.6.0a1~647^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6213c5664cf983ae67059a41520af1aaeeb52c3;p=python Fix userinfo example presented in urllib2 howto. --- diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index 9052ed59b0..7d5044b319 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -514,7 +514,7 @@ component and the hostname and optionally the port number) 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@password:example.com" is +NOT contain the "userinfo" component - for example "joe:password@example.com" is not correct.