Preguntas etiquetadas con python-typing

2
¿Cuál es el significado del atributo __total__ dunder en Python 3?
En Python 3.8 recientemente lanzado hay una nueva anotación de tipo typing.TypedDict. Su documentación menciona que Se puede acceder a la información de tipo para introspección a través de Point2D.__annotations__y Point2D.__total__. [....] Si __annotations__bien es bien conocido, habiendo sido introducido en PEP 3107 , no puedo encontrar ninguna información sobre …

1
¿Cómo pueden los tipos idénticos ser incompatibles en MyPy?
Con el siguiente ejemplo: 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, …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.