class PartialType(ProperType): (source)
Type such as List[?] where type arguments are unknown, or partial None type.
These are used for inferring types in multiphase initialization such as this:
x = [] # x gets a partial type List[?], as item type is unknown x.append(1) # partial type gets replaced with normal type List[int]
Or with None:
x = None # x gets a partial type None if c:
x = 1 # Infer actual type int for x
Method | __init__ |
Undocumented |
Method | accept |
Undocumented |
Class Variable | __slots__ |
Undocumented |
Instance Variable | type |
Undocumented |
Instance Variable | value_type |
Undocumented |
Instance Variable | var |
Undocumented |
Inherited from Type
(via ProperType
):
Class Method | deserialize |
Undocumented |
Method | __repr__ |
Undocumented |
Method | can_be_false_default |
Undocumented |
Method | can_be_true_default |
Undocumented |
Method | serialize |
Undocumented |
Instance Variable | can_be_false |
Undocumented |
Instance Variable | can_be_true |
Undocumented |
Inherited from Context
(via ProperType
, Type
):
Method | get_column |
Don't use. Use x.column. |
Method | get_line |
Don't use. Use x.line. |
Method | set_line |
If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node. |
Instance Variable | column |
Undocumented |
Instance Variable | end_line |
Undocumented |
Instance Variable | line |
Undocumented |
mypy.types.Type.__init__
Undocumented
Parameters | |
type:Optional[ | Undocumented |
var:mypy.nodes.Var | Undocumented |
value_type:Optional[ | Undocumented |
mypy.types.Type.accept
Undocumented
Parameters | |
visitor:TypeVisitor[ | Undocumented |
Returns | |
T | Undocumented |