Minor updates

This commit is contained in:
Miroslav Stampar
2018-05-08 14:06:34 +02:00
parent 13bf3e649a
commit 4a8f01c9dc
10 changed files with 35 additions and 31 deletions

View File

@@ -32,7 +32,7 @@ class HTTPRangeHandler(urllib2.BaseHandler):
urllib2.install_opener(opener)
# create Request and set Range header
req = urllib2.Request('http://www.python.org/')
req = urllib2.Request('https://www.python.org/')
req.header['Range'] = 'bytes=30-50'
f = urllib2.urlopen(req)
"""