File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ _dummy_threading: 3.0-3.8
35
35
_heapq: 3.0-
36
36
_imp: 3.0-
37
37
_interpchannels: 3.13-
38
+ _interpqueues: 3.13-
38
39
_interpreters: 3.13-
39
40
_json: 3.0-
40
41
_locale: 3.0-
Original file line number Diff line number Diff line change
1
+ from typing import Any , SupportsIndex
2
+
3
+ class QueueError (RuntimeError ): ...
4
+ class QueueNotFoundError (QueueError ): ...
5
+
6
+ def bind (qid : SupportsIndex ) -> None : ...
7
+ def create (maxsize : SupportsIndex , fmt : SupportsIndex ) -> int : ...
8
+ def destroy (qid : SupportsIndex ) -> None : ...
9
+ def get (qid : SupportsIndex ) -> tuple [Any , int ]: ...
10
+ def get_count (qid : SupportsIndex ) -> int : ...
11
+ def get_maxsize (qid : SupportsIndex ) -> int : ...
12
+ def get_queue_defaults (qid : SupportsIndex ) -> tuple [int ]: ...
13
+ def is_full (qid : SupportsIndex ) -> bool : ...
14
+ def list_all () -> list [tuple [int , int ]]: ...
15
+ def put (qid : SupportsIndex , obj : Any , fmt : SupportsIndex ) -> None : ...
16
+ def release (qid : SupportsIndex ) -> None : ...
You can’t perform that action at this time.
0 commit comments