From 9647d964d0db817fe34fba4814a05888a6fbfe85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Aug 2023 01:46:03 +0100 Subject: [PATCH] [stubsabot] Bump tqdm to 4.66.* (#10552) Release: https://pypi.org/pypi/tqdm/4.66.0 Repository: https://github.com/tqdm/tqdm Diff: https://github.com/tqdm/tqdm/compare/v4.65.2...v4.66.0 Stubsabot analysis of the diff between the two releases: - 1 public Python file has been added: `tests/tests_utils.py`. - 0 files included in typeshed's stubs have been deleted. - 6 files included in typeshed's stubs have been modified or renamed: `tqdm/cli.py`, `tqdm/contrib/discord.py`, `tqdm/contrib/slack.py`, `tqdm/contrib/telegram.py`, `tqdm/std.py`, `tqdm/utils.py`. - Total lines of Python code added: 274. - Total lines of Python code deleted: 182. Co-authored-by: stubsabot <> Co-authored-by: Alex Waygood --- stubs/tqdm/METADATA.toml | 2 +- stubs/tqdm/tqdm/utils.pyi | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/stubs/tqdm/METADATA.toml b/stubs/tqdm/METADATA.toml index 3c8564d17..b24cf310c 100644 --- a/stubs/tqdm/METADATA.toml +++ b/stubs/tqdm/METADATA.toml @@ -1,4 +1,4 @@ -version = "4.65.*" +version = "4.66.*" upstream_repository = "https://github.com/tqdm/tqdm" [tool.stubtest] diff --git a/stubs/tqdm/tqdm/utils.pyi b/stubs/tqdm/tqdm/utils.pyi index 4ddc65781..4f55afc5e 100644 --- a/stubs/tqdm/tqdm/utils.pyi +++ b/stubs/tqdm/tqdm/utils.pyi @@ -53,3 +53,6 @@ class CallbackIOWrapper(ObjectWrapper): def disp_len(data: str) -> int: ... def disp_trim(data: str, length: int) -> str: ... +def envwrap( + prefix: str, case_sensitive: bool = False, literal_eval: bool = False, is_method: bool = False +) -> Callable[[Callable[_P, _R]], Callable[_P, _R]]: ...