diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-24 15:37:02 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-24 15:37:02 (GMT) |
commit | 011c9aa82201235efbd69eedd67aa611cf2d7c97 (patch) | |
tree | e58b437ea1413b8c1ebd32ddb7d5beab12de3f6c /Doc/howto/urllib2.rst | |
parent | 42f58818d6100c2bef07245e360e7d8ca660058f (diff) | |
parent | 08ccbf4be98c8574e30c6d94c03c2ef9aef31a2c (diff) | |
download | cpython-011c9aa82201235efbd69eedd67aa611cf2d7c97.zip cpython-011c9aa82201235efbd69eedd67aa611cf2d7c97.tar.gz cpython-011c9aa82201235efbd69eedd67aa611cf2d7c97.tar.bz2 |
Issue #13587: merge with 3.2
Diffstat (limited to 'Doc/howto/urllib2.rst')
-rw-r--r-- | Doc/howto/urllib2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index 3ac8312..20dca20 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -455,12 +455,12 @@ Authentication Tutorial When authentication is required, the server sends a header (as well as the 401 error code) requesting authentication. This specifies the authentication scheme -and a 'realm'. The header looks like : ``Www-authenticate: SCHEME +and a 'realm'. The header looks like : ``WWW-Authenticate: SCHEME realm="REALM"``. e.g. :: - Www-authenticate: Basic realm="cPanel Users" + WWW-Authenticate: Basic realm="cPanel Users" The client should then retry the request with the appropriate name and password |