@@ -76,20 +76,20 @@ class BaseContext:
76
76
@overload
77
77
def Value (self , typecode_or_type : type [_CT ], * args : Any , lock : Literal [False ]) -> _CT : ...
78
78
@overload
79
- def Value (self , typecode_or_type : type [_CT ], * args : Any , lock : Literal [True ] | _LockLike ) -> SynchronizedBase [_CT ]: ...
79
+ def Value (self , typecode_or_type : type [_CT ], * args : Any , lock : Literal [True ] | _LockLike = ... ) -> SynchronizedBase [_CT ]: ...
80
80
@overload
81
- def Value (self , typecode_or_type : str , * args : Any , lock : Literal [True ] | _LockLike ) -> SynchronizedBase [Any ]: ...
81
+ def Value (self , typecode_or_type : str , * args : Any , lock : Literal [True ] | _LockLike = ... ) -> SynchronizedBase [Any ]: ...
82
82
@overload
83
83
def Value (self , typecode_or_type : str | type [_CData ], * args : Any , lock : bool | _LockLike = ...) -> Any : ...
84
84
@overload
85
85
def Array (self , typecode_or_type : type [_CT ], size_or_initializer : int | Sequence [Any ], * , lock : Literal [False ]) -> _CT : ...
86
86
@overload
87
87
def Array (
88
- self , typecode_or_type : type [_CT ], size_or_initializer : int | Sequence [Any ], * , lock : Literal [True ] | _LockLike
88
+ self , typecode_or_type : type [_CT ], size_or_initializer : int | Sequence [Any ], * , lock : Literal [True ] | _LockLike = ...
89
89
) -> SynchronizedArray [_CT ]: ...
90
90
@overload
91
91
def Array (
92
- self , typecode_or_type : str , size_or_initializer : int | Sequence [Any ], * , lock : Literal [True ] | _LockLike
92
+ self , typecode_or_type : str , size_or_initializer : int | Sequence [Any ], * , lock : Literal [True ] | _LockLike = ...
93
93
) -> SynchronizedArray [Any ]: ...
94
94
@overload
95
95
def Array (
0 commit comments