p115client 0.0.5.12__py3-none-any.whl → 0.0.5.12.2__py3-none-any.whl
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.
- p115client/_upload.py +3 -3
- p115client/client.py +216 -87
- p115client/const.py +7 -4
- p115client/tool/attr.py +1 -1
- p115client/tool/auth.py +1 -1
- p115client/tool/download.py +15 -23
- p115client/tool/edit.py +2 -2
- p115client/tool/export_dir.py +6 -6
- p115client/tool/fs_files.py +52 -36
- p115client/tool/history.py +2 -2
- p115client/tool/iterdir.py +37 -42
- p115client/tool/life.py +4 -4
- p115client/tool/offline.py +41 -9
- p115client/tool/pool.py +5 -5
- p115client/tool/upload.py +9 -9
- p115client/tool/xys.py +5 -5
- {p115client-0.0.5.12.dist-info → p115client-0.0.5.12.2.dist-info}/METADATA +2 -2
- p115client-0.0.5.12.2.dist-info/RECORD +28 -0
- p115client-0.0.5.12.dist-info/RECORD +0 -28
- {p115client-0.0.5.12.dist-info → p115client-0.0.5.12.2.dist-info}/LICENSE +0 -0
- {p115client-0.0.5.12.dist-info → p115client-0.0.5.12.2.dist-info}/WHEEL +0 -0
p115client/_upload.py
CHANGED
@@ -329,7 +329,7 @@ def oss_multipart_part_iter(
|
|
329
329
|
if getattr(etree.find("IsTruncated"), "text") == "false":
|
330
330
|
break
|
331
331
|
params["part-number-marker"] = getattr(etree.find("NextPartNumberMarker"), "text")
|
332
|
-
return run_gen_step_iter(gen_step,
|
332
|
+
return run_gen_step_iter(gen_step, async_)
|
333
333
|
|
334
334
|
|
335
335
|
@overload
|
@@ -723,7 +723,7 @@ def oss_multipart_upload_part_iter(
|
|
723
723
|
))
|
724
724
|
if part["Size"] < partsize:
|
725
725
|
break
|
726
|
-
return run_gen_step_iter(gen_step,
|
726
|
+
return run_gen_step_iter(gen_step, async_)
|
727
727
|
|
728
728
|
|
729
729
|
@overload
|
@@ -971,5 +971,5 @@ def oss_multipart_upload(
|
|
971
971
|
finally:
|
972
972
|
if close_reporthook is not None:
|
973
973
|
yield close_reporthook()
|
974
|
-
return run_gen_step(gen_step,
|
974
|
+
return run_gen_step(gen_step, async_)
|
975
975
|
|