タグ付けされた質問 「python-typing」

2
Python 3の__total__ dunder属性の意味は何ですか?
新しくリリースされたPython 3.8には、新しい型注釈がありtyping.TypedDictます。そのドキュメントには、 イントロスペクションのタイプ情報にはPoint2D.__annotations__、およびからアクセスできますPoint2D.__total__。[....] しばらくは__annotations__で導入された、よく知られているPEP 3107、私は上の任意の情報を見つけることができません__total__。誰かがその意味を説明し、可能であれば信頼できる情報源にリンクすることはできますか?

1
MyPyで同じ型に互換性がないのはなぜですか?
次の例では: from typing import Callable, Generic, Type, TypeVar ThetaType = TypeVar('ThetaType', bound=int) XType = TypeVar('XType', bound=int) class IteratedFunction(Generic[ThetaType, XType]): def find_fixed_point(self, theta: ThetaType, x_init: XType) -> XType: return x_init def combinator( iterated_function_cls: Type[ IteratedFunction[ThetaType, XType]]) -> Callable[ [IteratedFunction[ThetaType, XType]], XType]: old_find_fixed_point = iterated_function_cls.find_fixed_point def new_find_fixed_point( iterated_function: IteratedFunction[ThetaType, XType], theta: ThetaType, …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.