@@ -207,12 +207,12 @@ class TypeVar:
207207 contravariant : bool = False ,
208208 ) -> None : ...
209209 if sys .version_info >= (3 , 10 ):
210- def __or__ (self , right : Any ) -> _SpecialForm : ... # AnnotationForm
211- def __ror__ (self , left : Any ) -> _SpecialForm : ... # AnnotationForm
210+ def __or__ (self , right : Any , / ) -> _SpecialForm : ... # AnnotationForm
211+ def __ror__ (self , left : Any , / ) -> _SpecialForm : ... # AnnotationForm
212212 if sys .version_info >= (3 , 11 ):
213- def __typing_subst__ (self , arg : Any ) -> Any : ...
213+ def __typing_subst__ (self , arg : Any , / ) -> Any : ...
214214 if sys .version_info >= (3 , 13 ):
215- def __typing_prepare_subst__ (self , alias : Any , args : Any ) -> tuple [Any , ...]: ...
215+ def __typing_prepare_subst__ (self , alias : Any , args : Any , / ) -> tuple [Any , ...]: ...
216216 def has_default (self ) -> bool : ...
217217 if sys .version_info >= (3 , 14 ):
218218 @property
@@ -273,8 +273,8 @@ if sys.version_info >= (3, 11):
273273 def __init__ (self , name : str ) -> None : ...
274274
275275 def __iter__ (self ) -> Any : ...
276- def __typing_subst__ (self , arg : Never ) -> Never : ...
277- def __typing_prepare_subst__ (self , alias : Any , args : Any ) -> tuple [Any , ...]: ...
276+ def __typing_subst__ (self , arg : Never , / ) -> Never : ...
277+ def __typing_prepare_subst__ (self , alias : Any , args : Any , / ) -> tuple [Any , ...]: ...
278278 if sys .version_info >= (3 , 14 ):
279279 @property
280280 def evaluate_default (self ) -> EvaluateFunc | None : ...
@@ -289,7 +289,7 @@ if sys.version_info >= (3, 10):
289289 else :
290290 def __init__ (self , origin : ParamSpec ) -> None : ...
291291
292- def __eq__ (self , other : object ) -> bool : ...
292+ def __eq__ (self , other : object , / ) -> bool : ...
293293 __hash__ : ClassVar [None ] # type: ignore[assignment]
294294
295295 @final
@@ -301,7 +301,7 @@ if sys.version_info >= (3, 10):
301301 else :
302302 def __init__ (self , origin : ParamSpec ) -> None : ...
303303
304- def __eq__ (self , other : object ) -> bool : ...
304+ def __eq__ (self , other : object , / ) -> bool : ...
305305 __hash__ : ClassVar [None ] # type: ignore[assignment]
306306
307307 @final
@@ -365,11 +365,11 @@ if sys.version_info >= (3, 10):
365365 @property
366366 def kwargs (self ) -> ParamSpecKwargs : ...
367367 if sys .version_info >= (3 , 11 ):
368- def __typing_subst__ (self , arg : Any ) -> Any : ...
369- def __typing_prepare_subst__ (self , alias : Any , args : Any ) -> tuple [Any , ...]: ...
368+ def __typing_subst__ (self , arg : Any , / ) -> Any : ...
369+ def __typing_prepare_subst__ (self , alias : Any , args : Any , / ) -> tuple [Any , ...]: ...
370370
371- def __or__ (self , right : Any ) -> _SpecialForm : ...
372- def __ror__ (self , left : Any ) -> _SpecialForm : ...
371+ def __or__ (self , right : Any , / ) -> _SpecialForm : ...
372+ def __ror__ (self , left : Any , / ) -> _SpecialForm : ...
373373 if sys .version_info >= (3 , 13 ):
374374 def has_default (self ) -> bool : ...
375375 if sys .version_info >= (3 , 14 ):
@@ -1115,9 +1115,9 @@ if sys.version_info >= (3, 12):
11151115 # It's writable on types, but not on instances of TypeAliasType.
11161116 @property
11171117 def __module__ (self ) -> str | None : ... # type: ignore[override]
1118- def __getitem__ (self , parameters : Any ) -> GenericAlias : ... # AnnotationForm
1119- def __or__ (self , right : Any ) -> _SpecialForm : ...
1120- def __ror__ (self , left : Any ) -> _SpecialForm : ...
1118+ def __getitem__ (self , parameters : Any , / ) -> GenericAlias : ... # AnnotationForm
1119+ def __or__ (self , right : Any , / ) -> _SpecialForm : ...
1120+ def __ror__ (self , left : Any , / ) -> _SpecialForm : ...
11211121 if sys .version_info >= (3 , 14 ):
11221122 @property
11231123 def evaluate_value (self ) -> EvaluateFunc : ...
0 commit comments