grpcio 1.73.1__cp311-cp311-linux_armv7l.whl → 1.74.0rc1__cp311-cp311-linux_armv7l.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- grpc/_channel.py +5 -20
- grpc/_cython/cygrpc.cpython-311-arm-linux-gnueabihf.so +0 -0
- grpc/_grpcio_metadata.py +1 -1
- grpc/_observability.py +13 -2
- grpc/_typing.py +2 -1
- {grpcio-1.73.1.dist-info → grpcio-1.74.0rc1.dist-info}/METADATA +2 -2
- {grpcio-1.73.1.dist-info → grpcio-1.74.0rc1.dist-info}/RECORD +10 -10
- {grpcio-1.73.1.dist-info → grpcio-1.74.0rc1.dist-info}/LICENSE +0 -0
- {grpcio-1.73.1.dist-info → grpcio-1.74.0rc1.dist-info}/WHEEL +0 -0
- {grpcio-1.73.1.dist-info → grpcio-1.74.0rc1.dist-info}/top_level.txt +0 -0
grpc/_channel.py
CHANGED
@@ -1172,10 +1172,7 @@ class _UnaryUnaryMultiCallable(grpc.UnaryUnaryMultiCallable):
|
|
1172
1172
|
wait_for_ready: Optional[bool] = None,
|
1173
1173
|
compression: Optional[grpc.Compression] = None,
|
1174
1174
|
) -> Any:
|
1175
|
-
(
|
1176
|
-
state,
|
1177
|
-
call,
|
1178
|
-
) = self._blocking(
|
1175
|
+
state, call = self._blocking(
|
1179
1176
|
request, timeout, metadata, credentials, wait_for_ready, compression
|
1180
1177
|
)
|
1181
1178
|
return _end_unary_response_blocking(state, call, False, None)
|
@@ -1189,10 +1186,7 @@ class _UnaryUnaryMultiCallable(grpc.UnaryUnaryMultiCallable):
|
|
1189
1186
|
wait_for_ready: Optional[bool] = None,
|
1190
1187
|
compression: Optional[grpc.Compression] = None,
|
1191
1188
|
) -> Tuple[Any, grpc.Call]:
|
1192
|
-
(
|
1193
|
-
state,
|
1194
|
-
call,
|
1195
|
-
) = self._blocking(
|
1189
|
+
state, call = self._blocking(
|
1196
1190
|
request, timeout, metadata, credentials, wait_for_ready, compression
|
1197
1191
|
)
|
1198
1192
|
return _end_unary_response_blocking(state, call, True, None)
|
@@ -1522,10 +1516,7 @@ class _StreamUnaryMultiCallable(grpc.StreamUnaryMultiCallable):
|
|
1522
1516
|
wait_for_ready: Optional[bool] = None,
|
1523
1517
|
compression: Optional[grpc.Compression] = None,
|
1524
1518
|
) -> Any:
|
1525
|
-
(
|
1526
|
-
state,
|
1527
|
-
call,
|
1528
|
-
) = self._blocking(
|
1519
|
+
state, call = self._blocking(
|
1529
1520
|
request_iterator,
|
1530
1521
|
timeout,
|
1531
1522
|
metadata,
|
@@ -1544,10 +1535,7 @@ class _StreamUnaryMultiCallable(grpc.StreamUnaryMultiCallable):
|
|
1544
1535
|
wait_for_ready: Optional[bool] = None,
|
1545
1536
|
compression: Optional[grpc.Compression] = None,
|
1546
1537
|
) -> Tuple[Any, grpc.Call]:
|
1547
|
-
(
|
1548
|
-
state,
|
1549
|
-
call,
|
1550
|
-
) = self._blocking(
|
1538
|
+
state, call = self._blocking(
|
1551
1539
|
request_iterator,
|
1552
1540
|
timeout,
|
1553
1541
|
metadata,
|
@@ -1865,10 +1853,7 @@ def _deliveries(
|
|
1865
1853
|
) -> List[Callable[[grpc.ChannelConnectivity], None]]:
|
1866
1854
|
callbacks_needing_update = []
|
1867
1855
|
for callback_and_connectivity in state.callbacks_and_connectivities:
|
1868
|
-
|
1869
|
-
callback,
|
1870
|
-
callback_connectivity,
|
1871
|
-
) = callback_and_connectivity
|
1856
|
+
callback, callback_connectivity = callback_and_connectivity
|
1872
1857
|
if callback_connectivity is not state.connectivity:
|
1873
1858
|
callbacks_needing_update.append(callback)
|
1874
1859
|
callback_and_connectivity[1] = state.connectivity
|
Binary file
|
grpc/_grpcio_metadata.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = """1.
|
1
|
+
__version__ = """1.74.0rc1"""
|
grpc/_observability.py
CHANGED
@@ -18,7 +18,16 @@ import abc
|
|
18
18
|
import contextlib
|
19
19
|
import logging
|
20
20
|
import threading
|
21
|
-
from typing import
|
21
|
+
from typing import (
|
22
|
+
Any,
|
23
|
+
Generator,
|
24
|
+
Generic,
|
25
|
+
List,
|
26
|
+
Optional,
|
27
|
+
Tuple,
|
28
|
+
TypeVar,
|
29
|
+
Union,
|
30
|
+
)
|
22
31
|
|
23
32
|
from grpc._cython import cygrpc as _cygrpc
|
24
33
|
from grpc._typing import ChannelArgumentType
|
@@ -281,7 +290,9 @@ def maybe_record_rpc_latency(state: "_channel._RPCState") -> None:
|
|
281
290
|
)
|
282
291
|
|
283
292
|
|
284
|
-
def create_server_call_tracer_factory_option(
|
293
|
+
def create_server_call_tracer_factory_option(
|
294
|
+
xds: bool,
|
295
|
+
) -> Union[Tuple[ChannelArgumentType], Tuple[()]]:
|
285
296
|
with get_plugin() as plugin:
|
286
297
|
if plugin and plugin.stats_enabled:
|
287
298
|
server_call_tracer_factory_address = (
|
grpc/_typing.py
CHANGED
@@ -47,13 +47,14 @@ IntegratedCallFactory = Callable[
|
|
47
47
|
[
|
48
48
|
int,
|
49
49
|
bytes,
|
50
|
-
|
50
|
+
Optional[str],
|
51
51
|
Optional[float],
|
52
52
|
Optional[MetadataType],
|
53
53
|
Optional[cygrpc.CallCredentials],
|
54
54
|
Sequence[Sequence[cygrpc.Operation]],
|
55
55
|
UserTag,
|
56
56
|
Any,
|
57
|
+
Optional[int],
|
57
58
|
],
|
58
59
|
cygrpc.IntegratedCall,
|
59
60
|
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: grpcio
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.74.0rc1
|
4
4
|
Summary: HTTP/2-based RPC framework
|
5
5
|
Home-page: https://grpc.io
|
6
6
|
Author: The gRPC Authors
|
@@ -22,7 +22,7 @@ Requires-Python: >=3.9
|
|
22
22
|
Description-Content-Type: text/x-rst
|
23
23
|
License-File: LICENSE
|
24
24
|
Provides-Extra: protobuf
|
25
|
-
Requires-Dist: grpcio-tools >=1.
|
25
|
+
Requires-Dist: grpcio-tools >=1.74.0rc1 ; extra == 'protobuf'
|
26
26
|
|
27
27
|
gRPC Python
|
28
28
|
===========
|
@@ -1,19 +1,19 @@
|
|
1
1
|
grpc/__init__.py,sha256=RUN1ZIKXNgRqOEaUbqKJP2sDpn7C1wCcompDQsS_UkA,82333
|
2
2
|
grpc/_auth.py,sha256=UNjlkWE4rTsTZlVzJRpgupTJgEJYop-fpTkgJmvien4,2635
|
3
|
-
grpc/_channel.py,sha256=
|
3
|
+
grpc/_channel.py,sha256=BwE1XljQhkq9MUYFgDIk3jLIq4Uc3_GoASyf1h1XSFU,81161
|
4
4
|
grpc/_common.py,sha256=PQdgX83qEG3BUCfXlQVnrv9t5yFD9wjHhrckvX_UkfA,6784
|
5
5
|
grpc/_compression.py,sha256=0P9yfNIn33BmcQmOdnMUTogbLIPR0eT_Lmmnm3llcFg,1983
|
6
|
-
grpc/_grpcio_metadata.py,sha256
|
6
|
+
grpc/_grpcio_metadata.py,sha256=h9lDk5_IU-v4-n5CWiHmSPmvhHmlXONNaaqfBBDPIAw,29
|
7
7
|
grpc/_interceptor.py,sha256=5qiM2lQWabbBd8IeR6VHzTJKmhz7R2_Tf3m5Xp3C6Y0,25862
|
8
|
-
grpc/_observability.py,sha256=
|
8
|
+
grpc/_observability.py,sha256=6xhDuBgVMJxF5-JGPYRtetGrRDfMI12JuMQ6kFSFWcE,10500
|
9
9
|
grpc/_plugin_wrapping.py,sha256=sbJLmw0reHc0aBaSQuPuFr9hHnzllEVoDYgrkre7bkk,4382
|
10
10
|
grpc/_runtime_protos.py,sha256=2JtQGu0T8NlZn_GfzH_lpmTwVJPE1rkB5X9jcE7UXos,5805
|
11
11
|
grpc/_server.py,sha256=VXOqgBjwXURqLTnIA1AaxO3VdxkuAhQSLATgsTkMP8E,50885
|
12
12
|
grpc/_simple_stubs.py,sha256=2hK8LsbRdWhG8kT5DR1p0gLNr5Q818XYox8Sv__w0ws,24610
|
13
|
-
grpc/_typing.py,sha256
|
13
|
+
grpc/_typing.py,sha256=yYDT3PaWG8RYbHzT_y9OalmMOldE6pBGobEoQmBtbj4,2790
|
14
14
|
grpc/_utilities.py,sha256=befrEhsHGPfSuVPEMTNEVaQCPwTD8tKV8yIrge7I4Vo,7043
|
15
15
|
grpc/_cython/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577
|
16
|
-
grpc/_cython/cygrpc.cpython-311-arm-linux-gnueabihf.so,sha256=
|
16
|
+
grpc/_cython/cygrpc.cpython-311-arm-linux-gnueabihf.so,sha256=3Yzus56jQaewiW6er0kxBMOh4If77iCTgWOs1hQqoXs,11997044
|
17
17
|
grpc/_cython/_credentials/roots.pem,sha256=lhQzRMSuEJWIElssQdXa9lSl-vxuI_rDf3uj0p2n53Y,264440
|
18
18
|
grpc/_cython/_cygrpc/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577
|
19
19
|
grpc/aio/__init__.py,sha256=80Ho1FolpueFqIIvyl7d5b9FJgvw5ilZgHcXxN1NmUs,3160
|
@@ -56,8 +56,8 @@ grpc/framework/interfaces/base/utilities.py,sha256=buvlDv3ulHgsF4ej6DzQecoPGXwfM
|
|
56
56
|
grpc/framework/interfaces/face/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577
|
57
57
|
grpc/framework/interfaces/face/face.py,sha256=OGyApdjsZ8BF9nNq-2sd6WXd9bPpbvj4jvXrGdJu-nY,39700
|
58
58
|
grpc/framework/interfaces/face/utilities.py,sha256=jRmAmV0hXPXcN5a6Vg7OlBbcltGB6B10bUfoqqHJmUc,6777
|
59
|
-
grpcio-1.
|
60
|
-
grpcio-1.
|
61
|
-
grpcio-1.
|
62
|
-
grpcio-1.
|
63
|
-
grpcio-1.
|
59
|
+
grpcio-1.74.0rc1.dist-info/LICENSE,sha256=WQGY4_MF8sNH_eZNY3xlSSu-9VTbbINk4UnNN143l-4,29687
|
60
|
+
grpcio-1.74.0rc1.dist-info/METADATA,sha256=WMaMlC_LCL6O7lsLCyyDyZROFr2BUpWppNjscGUlWmE,3844
|
61
|
+
grpcio-1.74.0rc1.dist-info/WHEEL,sha256=eydN6l0cf_nY6V6fksFk9yqO-FX0xT8FihLcjF3RCwc,105
|
62
|
+
grpcio-1.74.0rc1.dist-info/top_level.txt,sha256=eEd2Jq_aVQFp38bWW8Pfwjz_5iibqeOFT-2zXlPAq_8,5
|
63
|
+
grpcio-1.74.0rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|