用法:
genericalias.__parameters__
此属性是在
__args__
中找到的唯一类型变量的延迟计算元组(可能为空):>>> from typing import TypeVar >>> T = TypeVar('T') >>> list[T].__parameters__ (~T,)
注意
带有
typing.ParamSpec
参数的GenericAlias
对象在替换后可能没有正确的__parameters__
,因为typing.ParamSpec
主要用于静态类型检查。
相关用法
- Python PIL getbands() and getextrema()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python getattr()用法及代码示例
- Python OpenCV getTrackbarPos()用法及代码示例
- Python OpenCV getgaussiankernel()用法及代码示例
- Python OpenCV getRotationMatrix2D()用法及代码示例
- Python PIL getbands()用法及代码示例
- Python gettext.GNUTranslations.ngettext用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python gettext.NullTranslations.install用法及代码示例
- Python gzip.compress(s)用法及代码示例
- Python globals()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Python gcd()用法及代码示例
- Python graphlib.TopologicalSorter用法及代码示例
- Python graphlib.TopologicalSorter.static_order用法及代码示例
- Python Tkinter grid()用法及代码示例
- Python gc.is_finalized用法及代码示例
- Python gc.is_tracked用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 genericalias.__parameters__。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。