Skip to content
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/grpcio/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "~= 1.82.1"
version = "~= 1.83.0"
upstream-repository = "https://github.com/grpc/grpc"
partial-stub = true

Expand Down
3 changes: 3 additions & 0 deletions stubs/grpcio/grpc/aio/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ from grpc import (
RpcError,
RpcMethodHandler,
ServerCredentials,
Status,
StatusCode,
_Options,
)
Expand Down Expand Up @@ -279,6 +280,8 @@ class ServicerContext(Generic[_TRequest, _TResponse], metaclass=abc.ABCMeta):
async def send_initial_metadata(self, initial_metadata: _MetadataType) -> None: ...
def add_done_callback(self, callback: _DoneCallback[_TRequest, _TResponse]) -> None: ...
@abc.abstractmethod
async def abort_with_status(self, status: Status) -> Never: ...
@abc.abstractmethod
def set_trailing_metadata(self, trailing_metadata: _MetadataType) -> None: ...
@abc.abstractmethod
def invocation_metadata(self) -> Metadata | None: ...
Expand Down