From: Senthil Kumaran Date: Sat, 6 Feb 2016 03:35:57 +0000 (-0800) Subject: Fix userinfo example presented in urllib2 howto. X-Git-Tag: v2.7.12rc1~244 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c61f2e45b1b1e0c1e6c8c308c8b6ad8f0e05426;p=thirdparty%2FPython%2Fcpython.git Fix userinfo example presented in urllib2 howto. --- diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index cccbc54169b3..30763a26a52d 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -499,7 +499,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.