diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-02-06 03:35:57 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-02-06 03:35:57 (GMT) |
commit | 9c61f2e45b1b1e0c1e6c8c308c8b6ad8f0e05426 (patch) | |
tree | 18bd0894e5a836d011ece4da58f47a73f4596450 /Doc | |
parent | 4a0a9556fced91be576abd2658fd32a4d2687563 (diff) | |
download | cpython-9c61f2e45b1b1e0c1e6c8c308c8b6ad8f0e05426.zip cpython-9c61f2e45b1b1e0c1e6c8c308c8b6ad8f0e05426.tar.gz cpython-9c61f2e45b1b1e0c1e6c8c308c8b6ad8f0e05426.tar.bz2 |
Fix userinfo example presented in urllib2 howto.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/urllib2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index cccbc54..30763a2 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. |