Bump boltons to 23.1.* (#11083)

This commit is contained in:
Avasam
2023-11-29 11:05:44 -05:00
committed by GitHub
parent 4687faab8e
commit d5685789cc
3 changed files with 5 additions and 9 deletions

View File

@@ -1,5 +1,2 @@
version = "23.0.*"
version = "23.1.*"
upstream_repository = "https://github.com/mahmoud/boltons"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -15,7 +15,6 @@ EXPAT_VERSION: str
CPU_COUNT: int
HAVE_THREADING: bool
HAVE_IPV6: bool
RLIMIT_NOFILE: int
RLIMIT_FDS_SOFT: int
RLIMIT_FDS_HARD: int
START_TIME_INFO: dict[str, str | float]

View File

@@ -19,10 +19,10 @@ def chunked_iter(src, size, **kw) -> Generator[Incomplete, None, Incomplete]: ..
def chunk_ranges(
input_size: int, chunk_size: int, input_offset: int = 0, overlap_size: int = 0, align: bool = False
) -> Generator[tuple[int, int], None, None]: ...
def pairwise(src): ...
def pairwise_iter(src): ...
def windowed(src, size): ...
def windowed_iter(src, size): ...
def pairwise(src, end=...): ...
def pairwise_iter(src, end=...): ...
def windowed(src, size, fill=...): ...
def windowed_iter(src, size, fill=...): ...
def xfrange(stop, start: Incomplete | None = None, step: float = 1.0) -> Generator[Incomplete, None, None]: ...
def frange(stop, start: Incomplete | None = None, step: float = 1.0): ...
def backoff(start, stop, count: Incomplete | None = None, factor: float = 2.0, jitter: bool = False): ...