python-httpfile 0.0.4.2__tar.gz → 0.0.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/PKG-INFO +1 -1
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/httpfile/__init__.py +1 -1
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/pyproject.toml +1 -1
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/LICENSE +0 -0
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/httpfile/py.typed +0 -0
- {python_httpfile-0.0.4.2 → python_httpfile-0.0.4.3}/readme.md +0 -0
|
@@ -535,6 +535,7 @@ class AsyncHTTPFileReader(HTTPFileReader):
|
|
|
535
535
|
seek_threshold: int = 1 << 20,
|
|
536
536
|
urlopen = None,
|
|
537
537
|
):
|
|
538
|
+
self.__dict__.update(closed=False, start=0)
|
|
538
539
|
self.__dict__["_initing"] = run_async(self.__ainit__(
|
|
539
540
|
url=url,
|
|
540
541
|
headers=headers,
|
|
@@ -607,7 +608,6 @@ class AsyncHTTPFileReader(HTTPFileReader):
|
|
|
607
608
|
length = get_total_length(response) or 0,
|
|
608
609
|
chunked = is_chunked(response),
|
|
609
610
|
start = start,
|
|
610
|
-
closed = False,
|
|
611
611
|
urlopen = urlopen,
|
|
612
612
|
headers = MappingProxyType(headers),
|
|
613
613
|
seek_threshold = max(seek_threshold, 0),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|