Skip to content

Bump gevent to 25.4.* #13855

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

Merged
merged 2 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion stubs/gevent/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "24.11.*"
version = "25.4.*"
upstream_repository = "https://github.com/gevent/gevent"
requires = ["types-greenlet", "types-psutil"]

Expand Down
1 change: 1 addition & 0 deletions stubs/gevent/gevent/_config.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class Config:
ares_udp_port: _SettingDescriptor[str | int | None]
ares_tcp_port: _SettingDescriptor[str | int | None]
ares_servers: _SettingDescriptor[Sequence[str] | str | None]
print_blocking_reports: _SettingDescriptor[bool]

class ImportableSetting(Generic[_T]):
default: str | Sequence[str]
Expand Down
1 change: 1 addition & 0 deletions stubs/gevent/gevent/lock.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ class RLock:
def __enter__(self) -> bool: ...
def release(self) -> None: ...
def __exit__(self, typ: type[BaseException] | None, val: BaseException | None, tb: TracebackType | None) -> None: ...
def locked(self) -> bool: ...
1 change: 1 addition & 0 deletions stubs/gevent/gevent/pywsgi.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class Input:
position: int
chunked_input: bool
chunk_length: int
send_100_continue_enabled: bool
def __init__(
self, rfile: BufferedReader, content_length: int | None, socket: _GeventSocket | None = None, chunked_input: bool = False
) -> None: ...
Expand Down
17 changes: 10 additions & 7 deletions stubs/gevent/gevent/queue.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ from collections import deque
from collections.abc import Iterable

# technically it is using _PySimpleQueue, which has the same interface as SimpleQueue
from queue import Empty as Empty, Full as Full, SimpleQueue as SimpleQueue
from queue import Empty as Empty, Full as Full
from typing import Any, Generic, Literal, TypeVar, final, overload
from typing_extensions import Self

Expand All @@ -19,13 +19,14 @@ else:

_T = TypeVar("_T")

class Queue(Generic[_T]):
class SimpleQueue(Generic[_T]):
@property
def hub(self) -> Hub: ... # readonly in Cython
@property
def queue(self) -> deque[_T]: ... # readonly in Cython
maxsize: int | None
is_shutdown: bool

@overload
def __init__(self, maxsize: int | None = None) -> None: ...
@overload
Expand All @@ -42,26 +43,25 @@ class Queue(Generic[_T]):
def put(self, item: _T, block: bool = True, timeout: float | None = None) -> None: ...
def put_nowait(self, item: _T) -> None: ...
def qsize(self) -> int: ...
def shutdown(self, immediate: bool = False) -> None: ...
def __bool__(self) -> bool: ...
def __iter__(self) -> Self: ...
def __len__(self) -> int: ...
def __next__(self) -> _T: ...
next = __next__

@final
class UnboundQueue(Queue[_T]):
class UnboundQueue(SimpleQueue[_T]):
@overload
def __init__(self, maxsize: None = None) -> None: ...
@overload
def __init__(self, maxsize: None, items: Iterable[_T]) -> None: ...
@overload
def __init__(self, maxsize: None = None, *, items: Iterable[_T]) -> None: ...

class PriorityQueue(Queue[_T]): ...
class LifoQueue(Queue[_T]): ...
class PriorityQueue(SimpleQueue[_T]): ...
class LifoQueue(SimpleQueue[_T]): ...

class JoinableQueue(Queue[_T]):
class Queue(SimpleQueue[_T]):
@property
def unfinished_tasks(self) -> int: ... # readonly in Cython
@overload
Expand All @@ -72,6 +72,9 @@ class JoinableQueue(Queue[_T]):
def __init__(self, maxsize: int | None = None, *, items: Iterable[_T], unfinished_tasks: int | None = None) -> None: ...
def join(self, timeout: float | None = None) -> bool: ...
def task_done(self) -> None: ...
def shutdown(self, immediate: bool = False) -> None: ...

JoinableQueue = Queue

class Channel(Generic[_T]):
@property
Expand Down
Loading