Overview
| Comment: | wrong dictionary initialised |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
31a8af9ff1b52e60a202b1735df0ffc8 |
| User & Date: | c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 on 2012-01-16 10:29:16.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2012-01-16
| ||
| 13:33 | added timeout simplified gzip handling stops rechecking partial files check-in: a81f1a70fb user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
| 10:29 | wrong dictionary initialised check-in: 31a8af9ff1 user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
| 10:26 | gzip support check-in: 62e6d8a7ab user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
Changes
Modified samesite.py
from [ddef44cfde]
to [0d2e47db05].
| ︙ | ︙ | |||
242 243 244 245 246 247 248 |
while True:
range = needed.pop()
if range[0] == None:
break
ranges += '{}-{}'.format(range[0], range[1] - 1),
my_headers['range'] = 'bytes=' + ','.join(ranges)
| | | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
while True:
range = needed.pop()
if range[0] == None:
break
ranges += '{}-{}'.format(range[0], range[1] - 1),
my_headers['range'] = 'bytes=' + ','.join(ranges)
my_headers['Accept-Encoding'] = 'gzip'
request = urllib2.Request(request, headers = my_headers)
source = urllib2.urlopen(request)
new_record = {}
new_record['_parts'] = record['_parts']
headers = source.info()
|
| ︙ | ︙ |