diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-09-20 23:16:45 +0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-09-20 23:16:45 +0500 |
commit | 95acbcedc481dca2597a58d54910814c0300b3cd (patch) | |
tree | 5ac934fbf5b4e9da9285f6b270e8315befcf8823 /Doc/howto/urllib2.rst | |
parent | c37c49fd5617ffc7cfc37acee2e2737e1c357ca3 (diff) | |
download | cpython-git-95acbcedc481dca2597a58d54910814c0300b3cd.tar.gz |
use a more modern UA (#25145)
Diffstat (limited to 'Doc/howto/urllib2.rst')
-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 01ae513644..a82403267c 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -174,7 +174,7 @@ Explorer [#]_. :: import urllib.request url = 'http://www.someserver.com/cgi-bin/register.cgi' - user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' + user_agent = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64)' values = {'name' : 'Michael Foord', 'location' : 'Northampton', 'language' : 'Python' } |