We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
typing.TypeVarTuple
1 parent 4ab04d2 commit f0fe10bCopy full SHA for f0fe10b
1 file changed
stdlib/typing.pyi
@@ -257,6 +257,15 @@ if sys.version_info >= (3, 11):
257
class TypeVarTuple:
258
@property
259
def __name__(self) -> str: ...
260
+ if sys.version_info >= (3, 15):
261
+ @property
262
+ def __bound__(self) -> Any | None: ... # AnnotationForm
263
264
+ def __covariant__(self) -> bool: ...
265
266
+ def __contravariant__(self) -> bool: ...
267
268
+ def __infer_variance__(self) -> bool: ...
269
if sys.version_info >= (3, 13):
270
271
def __default__(self) -> Any: ... # AnnotationForm
0 commit comments