|
14 | 14 | Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/ |
15 | 15 | Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski |
16 | 16 |
|
17 | | - $FileInfo: pyarchivefile.py - Last Update: 8/14/2025 Ver. 0.19.6 RC 1 - Author: cooldude2k $ |
| 17 | + $FileInfo: pyarchivefile.py - Last Update: 8/14/2025 Ver. 0.19.8 RC 1 - Author: cooldude2k $ |
18 | 18 | ''' |
19 | 19 |
|
20 | 20 | from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes |
@@ -339,7 +339,7 @@ def decode_unicode_escape(value): |
339 | 339 | __file_format_dict__ = __file_format_multi_dict__[__file_format_default__] |
340 | 340 | __project__ = __program_name__ |
341 | 341 | __project_url__ = "https://github.com/GameMaker2k/PyArchiveFile" |
342 | | -__version_info__ = (0, 19, 6, "RC 1", 1) |
| 342 | +__version_info__ = (0, 19, 8, "RC 1", 1) |
343 | 343 | __version_date_info__ = (2025, 8, 14, "RC 1", 1) |
344 | 344 | __version_date__ = str(__version_date_info__[0]) + "." + str( |
345 | 345 | __version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2) |
@@ -9300,10 +9300,10 @@ def download_file_from_http_file(url, headers=None, usehttp=__use_http_lib__): |
9300 | 9300 | if usehttp == 'requests' and haverequests: |
9301 | 9301 | if username and password: |
9302 | 9302 | response = requests.get( |
9303 | | - rebuilt_url, headers=headers, auth=(username, password), timeout=(5, 30)), stream=True |
| 9303 | + rebuilt_url, headers=headers, auth=(username, password), stream=True |
9304 | 9304 | ) |
9305 | 9305 | else: |
9306 | | - response = requests.get(rebuilt_url, headers=headers, timeout=(5, 30)), stream=True) |
| 9306 | + response = requests.get(rebuilt_url, headers=headers, stream=True) |
9307 | 9307 | response.raw.decode_content = True |
9308 | 9308 | shutil.copyfileobj(response.raw, httpfile) |
9309 | 9309 |
|
|
0 commit comments