mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Bump boltons to 23.1.* (#11083)
This commit is contained in:
@@ -1,5 +1,2 @@
|
||||
version = "23.0.*"
|
||||
version = "23.1.*"
|
||||
upstream_repository = "https://github.com/mahmoud/boltons"
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = false
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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): ...
|
||||
|
||||
Reference in New Issue
Block a user