Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve boto callbacks #8201

Merged
merged 1 commit into from
Jun 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions stubs/boto/boto/s3/key.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Key:
self,
fp,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
query_args: Any | None = ...,
chunked_transfer: bool = ...,
Expand All @@ -121,7 +121,7 @@ class Key:
fp,
headers: dict[str, str] | None = ...,
replace: bool = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
policy: Any | None = ...,
reduced_redundancy: bool = ...,
Expand All @@ -133,7 +133,7 @@ class Key:
fp,
headers: dict[str, str] | None = ...,
replace: bool = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
policy: Any | None = ...,
md5: Any | None = ...,
Expand All @@ -148,7 +148,7 @@ class Key:
filename,
headers: dict[str, str] | None = ...,
replace: bool = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
policy: Any | None = ...,
md5: Any | None = ...,
Expand All @@ -160,7 +160,7 @@ class Key:
string_data: str | bytes,
headers: dict[str, str] | None = ...,
replace: bool = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
policy: Any | None = ...,
md5: Any | None = ...,
Expand All @@ -171,21 +171,21 @@ class Key:
self,
fp,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
torrent: bool = ...,
version_id: Any | None = ...,
override_num_retries: Any | None = ...,
response_headers: dict[str, str] | None = ...,
): ...
def get_torrent_file(
self, fp, headers: dict[str, str] | None = ..., cb: Callable[[int, int], Any] | None = ..., num_cb: int = ...
self, fp, headers: dict[str, str] | None = ..., cb: Callable[[int, int], object] | None = ..., num_cb: int = ...
): ...
def get_contents_to_file(
self,
fp,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
torrent: bool = ...,
version_id: Any | None = ...,
Expand All @@ -196,7 +196,7 @@ class Key:
self,
filename,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
torrent: bool = ...,
version_id: Any | None = ...,
Expand All @@ -207,7 +207,7 @@ class Key:
def get_contents_as_string(
self,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
torrent: bool = ...,
version_id: Any | None = ...,
Expand All @@ -218,7 +218,7 @@ class Key:
def get_contents_as_string(
self,
headers: dict[str, str] | None = ...,
cb: Callable[[int, int], Any] | None = ...,
cb: Callable[[int, int], object] | None = ...,
num_cb: int = ...,
torrent: bool = ...,
version_id: Any | None = ...,
Expand Down