@@ -9,16 +9,30 @@ class BaseProcess:
99 daemon : bool
1010 authkey : bytes
1111 _identity : tuple [int , ...] # undocumented
12- def __init__ (
13- self ,
14- group : None = None ,
15- target : Callable [..., object ] | None = None ,
16- name : str | None = None ,
17- args : Iterable [Any ] = (),
18- kwargs : Mapping [str , Any ] = {},
19- * ,
20- daemon : bool | None = None ,
21- ) -> None : ...
12+ if sys .version_info >= (3 , 14 ):
13+ # kwargs default changed in Python 3.14.1
14+ def __init__ (
15+ self ,
16+ group : None = None ,
17+ target : Callable [..., object ] | None = None ,
18+ name : str | None = None ,
19+ args : Iterable [Any ] = (),
20+ kwargs : Mapping [str , Any ] | None = None ,
21+ * ,
22+ daemon : bool | None = None ,
23+ ) -> None : ...
24+ else :
25+ def __init__ (
26+ self ,
27+ group : None = None ,
28+ target : Callable [..., object ] | None = None ,
29+ name : str | None = None ,
30+ args : Iterable [Any ] = (),
31+ kwargs : Mapping [str , Any ] = {},
32+ * ,
33+ daemon : bool | None = None ,
34+ ) -> None : ...
35+
2236 def run (self ) -> None : ...
2337 def start (self ) -> None : ...
2438 if sys .version_info >= (3 , 14 ):
0 commit comments