commit | 1b822d0e2f1b2c3bf6514775dcc367c9d92b481e | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 20 23:16:45 2015 +0500 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 20 23:16:45 2015 +0500 |
tree | b6ef73907af257731db27aaa9b079bde6129d649 | |
parent | c717e08720bf5643038a26d1812069b9288f18ae [diff] |
use a more modern UA (#25145)
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index 0cf62f5..cccbc54 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst
@@ -164,7 +164,7 @@ import urllib2 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' }