Changeset 958:25df1de263cd for src/mlx


Ignore:
Timestamp:
05/12/19 13:50:52 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
transplant_source:
ªÆÝíý*;bŠQ¡¡›,¦
Message:

More data is read in one call when reading the files to update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/update.py

    r950 r958  
    370370                fin = urllib.request.urlopen(updateURL + "/" + path)
    371371                while True:
    372                     data = fin.read(4096)
     372                    data = fin.read(256*1024)
    373373                    if not data:
    374374                        break
Note: See TracChangeset for help on using the changeset viewer.