forked from python/mypy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckmember.py
More file actions
1597 lines (1429 loc) · 63.2 KB
/
checkmember.py
File metadata and controls
1597 lines (1429 loc) · 63.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Type checking of attribute access"""
from __future__ import annotations
from collections.abc import Callable, Sequence
from typing import TypeVar, cast
from mypy import message_registry, state
from mypy.checker_shared import TypeCheckerSharedApi
from mypy.erasetype import erase_typevars
from mypy.expandtype import (
expand_self_type,
expand_type_by_instance,
freshen_all_functions_type_vars,
)
from mypy.lookup import lookup_stdlib_typeinfo
from mypy.maptype import map_instance_to_supertype
from mypy.meet import is_overlapping_types
from mypy.messages import MessageBuilder
from mypy.modules_state import modules_state
from mypy.nodes import (
ARG_POS,
ARG_STAR,
ARG_STAR2,
EXCLUDED_ENUM_ATTRIBUTES,
SYMBOL_FUNCBASE_TYPES,
Context,
Decorator,
Expression,
FuncBase,
FuncDef,
IndexExpr,
MypyFile,
NameExpr,
OverloadedFuncDef,
SymbolTable,
TempNode,
TypeAlias,
TypeInfo,
TypeVarLikeExpr,
Var,
is_final_node,
)
from mypy.plugin import AttributeContext
from mypy.subtypes import is_subtype
from mypy.typeops import (
bind_self,
erase_to_bound,
freeze_all_type_vars,
function_type,
get_all_type_vars,
make_simplified_union,
supported_self_type,
tuple_fallback,
)
from mypy.types import (
AnyType,
CallableType,
DeletedType,
FunctionLike,
Instance,
LiteralType,
NoneType,
Overloaded,
ParamSpecType,
PartialType,
ProperType,
TupleType,
Type,
TypedDictType,
TypeOfAny,
TypeType,
TypeVarLikeType,
TypeVarTupleType,
TypeVarType,
UninhabitedType,
UnionType,
get_proper_type,
instance_cache,
)
class MemberContext:
"""Information and objects needed to type check attribute access.
Look at the docstring of analyze_member_access for more information.
"""
def __init__(
self,
*,
is_lvalue: bool,
is_super: bool,
is_operator: bool,
original_type: Type,
context: Context,
chk: TypeCheckerSharedApi,
self_type: Type | None = None,
module_symbol_table: SymbolTable | None = None,
no_deferral: bool = False,
is_self: bool = False,
rvalue: Expression | None = None,
suppress_errors: bool = False,
preserve_type_var_ids: bool = False,
) -> None:
self.is_lvalue = is_lvalue
self.is_super = is_super
self.is_operator = is_operator
self.original_type = original_type
self.self_type = self_type or original_type
self.context = context # Error context
self.chk = chk
self.msg = chk.msg
self.module_symbol_table = module_symbol_table
self.no_deferral = no_deferral
self.is_self = is_self
if rvalue is not None:
assert is_lvalue
self.rvalue = rvalue
self.suppress_errors = suppress_errors
# This attribute is only used to preserve old protocol member access logic.
# It is needed to avoid infinite recursion in cases involving self-referential
# generic methods, see find_member() for details. Do not use for other purposes!
self.preserve_type_var_ids = preserve_type_var_ids
def named_type(self, name: str) -> Instance:
return self.chk.named_type(name)
def not_ready_callback(self, name: str, context: Context) -> None:
self.chk.handle_cannot_determine_type(name, context)
def fail(self, msg: str) -> None:
if not self.suppress_errors:
self.msg.fail(msg, self.context)
def copy_modified(
self,
*,
self_type: Type | None = None,
is_lvalue: bool | None = None,
original_type: Type | None = None,
) -> MemberContext:
mx = MemberContext(
is_lvalue=self.is_lvalue,
is_super=self.is_super,
is_operator=self.is_operator,
original_type=self.original_type,
context=self.context,
chk=self.chk,
self_type=self.self_type,
module_symbol_table=self.module_symbol_table,
no_deferral=self.no_deferral,
rvalue=self.rvalue,
suppress_errors=self.suppress_errors,
preserve_type_var_ids=self.preserve_type_var_ids,
)
if self_type is not None:
mx.self_type = self_type
if is_lvalue is not None:
mx.is_lvalue = is_lvalue
if original_type is not None:
mx.original_type = original_type
return mx
def analyze_member_access(
name: str,
typ: Type,
context: Context,
*,
is_lvalue: bool,
is_super: bool,
is_operator: bool,
original_type: Type,
chk: TypeCheckerSharedApi,
override_info: TypeInfo | None = None,
in_literal_context: bool = False,
self_type: Type | None = None,
module_symbol_table: SymbolTable | None = None,
no_deferral: bool = False,
is_self: bool = False,
rvalue: Expression | None = None,
suppress_errors: bool = False,
) -> Type:
"""Return the type of attribute 'name' of 'typ'.
The actual implementation is in '_analyze_member_access' and this docstring
also applies to it.
This is a general operation that supports various different variations:
1. lvalue or non-lvalue access (setter or getter access)
2. supertype access when using super() (is_super == True and
'override_info' should refer to the supertype)
'original_type' is the most precise inferred or declared type of the base object
that we have available. When looking for an attribute of 'typ', we may perform
recursive calls targeting the fallback type, and 'typ' may become some supertype
of 'original_type'. 'original_type' is always preserved as the 'typ' type used in
the initial, non-recursive call. The 'self_type' is a component of 'original_type'
to which generic self should be bound (a narrower type that has a fallback to instance).
Currently, this is used only for union types.
'module_symbol_table' is passed to this function if 'typ' is actually a module,
and we want to keep track of the available attributes of the module (since they
are not available via the type object directly)
'rvalue' can be provided optionally to infer better setter type when is_lvalue is True,
most notably this helps for descriptors with overloaded __set__() method.
'suppress_errors' will skip any logic that is only needed to generate error messages.
Note that this more of a performance optimization, one should not rely on this to not
show any messages, as some may be show e.g. by callbacks called here,
use msg.filter_errors(), if needed.
"""
mx = MemberContext(
is_lvalue=is_lvalue,
is_super=is_super,
is_operator=is_operator,
original_type=original_type,
context=context,
chk=chk,
self_type=self_type,
module_symbol_table=module_symbol_table,
no_deferral=no_deferral,
is_self=is_self,
rvalue=rvalue,
suppress_errors=suppress_errors,
)
result = _analyze_member_access(name, typ, mx, override_info)
possible_literal = get_proper_type(result)
if (
in_literal_context
and isinstance(possible_literal, Instance)
and possible_literal.last_known_value is not None
):
return possible_literal.last_known_value
else:
return result
def _analyze_member_access(
name: str, typ: Type, mx: MemberContext, override_info: TypeInfo | None = None
) -> Type:
typ = get_proper_type(typ)
if isinstance(typ, Instance):
return analyze_instance_member_access(name, typ, mx, override_info)
elif isinstance(typ, AnyType):
# The base object has dynamic type.
return AnyType(TypeOfAny.from_another_any, source_any=typ)
elif isinstance(typ, UnionType):
return analyze_union_member_access(name, typ, mx)
elif isinstance(typ, FunctionLike) and typ.is_type_obj():
return analyze_type_callable_member_access(name, typ, mx)
elif isinstance(typ, TypeType):
return analyze_type_type_member_access(name, typ, mx, override_info)
elif isinstance(typ, TupleType):
# Actually look up from the fallback instance type.
return _analyze_member_access(name, tuple_fallback(typ), mx, override_info)
elif isinstance(typ, (LiteralType, FunctionLike)):
# Actually look up from the fallback instance type.
return _analyze_member_access(name, typ.fallback, mx, override_info)
elif isinstance(typ, TypedDictType):
return analyze_typeddict_access(name, typ, mx, override_info)
elif isinstance(typ, NoneType):
return analyze_none_member_access(name, typ, mx)
elif isinstance(typ, TypeVarLikeType):
if isinstance(typ, TypeVarType) and typ.values:
return _analyze_member_access(
name, make_simplified_union(typ.values), mx, override_info
)
return _analyze_member_access(name, typ.upper_bound, mx, override_info)
elif isinstance(typ, DeletedType):
if not mx.suppress_errors:
mx.msg.deleted_as_rvalue(typ, mx.context)
return AnyType(TypeOfAny.from_error)
elif isinstance(typ, UninhabitedType):
attr_type = UninhabitedType()
attr_type.ambiguous = typ.ambiguous
return attr_type
return report_missing_attribute(mx.original_type, typ, name, mx)
def may_be_awaitable_attribute(
name: str, typ: Type, mx: MemberContext, override_info: TypeInfo | None = None
) -> bool:
"""Check if the given type has the attribute when awaited."""
if mx.chk.checking_missing_await:
# Avoid infinite recursion.
return False
with mx.chk.checking_await_set(), mx.msg.filter_errors() as local_errors:
aw_type = mx.chk.get_precise_awaitable_type(typ, local_errors)
if aw_type is None:
return False
_ = _analyze_member_access(
name, aw_type, mx.copy_modified(self_type=aw_type), override_info
)
return not local_errors.has_new_errors()
def report_missing_attribute(
original_type: Type,
typ: Type,
name: str,
mx: MemberContext,
override_info: TypeInfo | None = None,
) -> Type:
if mx.suppress_errors:
return AnyType(TypeOfAny.from_error)
error_code = mx.msg.has_no_attr(original_type, typ, name, mx.context, mx.module_symbol_table)
if not mx.msg.prefer_simple_messages():
if may_be_awaitable_attribute(name, typ, mx, override_info):
mx.msg.possible_missing_await(mx.context, error_code)
return AnyType(TypeOfAny.from_error)
# The several functions that follow implement analyze_member_access for various
# types and aren't documented individually.
def analyze_instance_member_access(
name: str, typ: Instance, mx: MemberContext, override_info: TypeInfo | None
) -> Type:
info = typ.type
if override_info:
info = override_info
method = info.get_method(name)
if name == "__init__" and not mx.is_super and not info.is_final:
if not method or not method.is_final:
# Accessing __init__ in statically typed code would compromise
# type safety unless used via super() or the method/class is final.
mx.fail(message_registry.CANNOT_ACCESS_INIT)
return AnyType(TypeOfAny.from_error)
# The base object has an instance type.
if (
state.find_occurrences
and info.name == state.find_occurrences[0]
and name == state.find_occurrences[1]
and not mx.suppress_errors
):
mx.msg.note("Occurrence of '{}.{}'".format(*state.find_occurrences), mx.context)
# Look up the member. First look up the method dictionary.
if method and not isinstance(method, Decorator):
if mx.is_super and not mx.suppress_errors:
validate_super_call(method, mx)
if method.is_property:
assert isinstance(method, OverloadedFuncDef)
getter = method.items[0]
assert isinstance(getter, Decorator)
if mx.is_lvalue and getter.var.is_settable_property:
mx.chk.warn_deprecated(method.setter, mx.context)
return analyze_var(name, getter.var, typ, mx)
if mx.is_lvalue and not mx.suppress_errors:
mx.msg.cant_assign_to_method(mx.context)
if not isinstance(method, OverloadedFuncDef):
signature = function_type(method, mx.named_type("builtins.function"))
else:
if method.type is None:
# Overloads may be not ready if they are decorated. Handle this in same
# manner as we would handle a regular decorated function: defer if possible.
if not mx.no_deferral and method.items:
mx.not_ready_callback(method.name, mx.context)
return AnyType(TypeOfAny.special_form)
assert isinstance(method.type, Overloaded)
signature = method.type
if not mx.preserve_type_var_ids:
signature = freshen_all_functions_type_vars(signature)
if not method.is_static:
if isinstance(method, (FuncDef, OverloadedFuncDef)) and method.is_trivial_self:
signature = bind_self_fast(signature, mx.self_type)
else:
signature = check_self_arg(
signature, mx.self_type, method.is_class, mx.context, name, mx.msg
)
signature = bind_self(signature, mx.self_type, is_classmethod=method.is_class)
typ = map_instance_to_supertype(typ, method.info)
member_type = expand_type_by_instance(signature, typ)
freeze_all_type_vars(member_type)
return member_type
else:
# Not a method.
return analyze_member_var_access(name, typ, info, mx)
def validate_super_call(node: FuncBase, mx: MemberContext) -> None:
unsafe_super = False
if isinstance(node, FuncDef) and node.is_trivial_body:
unsafe_super = True
elif isinstance(node, OverloadedFuncDef):
if node.impl:
impl = node.impl if isinstance(node.impl, FuncDef) else node.impl.func
unsafe_super = impl.is_trivial_body
elif not node.is_property and node.items:
assert isinstance(node.items[0], Decorator)
unsafe_super = node.items[0].func.is_trivial_body
if unsafe_super:
mx.msg.unsafe_super(node.name, node.info.name, mx.context)
def analyze_type_callable_member_access(name: str, typ: FunctionLike, mx: MemberContext) -> Type:
# Class attribute.
# TODO super?
ret_type = typ.items[0].ret_type
assert isinstance(ret_type, ProperType)
if isinstance(ret_type, TupleType):
ret_type = tuple_fallback(ret_type)
if isinstance(ret_type, TypedDictType):
ret_type = ret_type.fallback
if isinstance(ret_type, LiteralType):
ret_type = ret_type.fallback
if isinstance(ret_type, Instance):
if not mx.is_operator:
# When Python sees an operator (eg `3 == 4`), it automatically translates that
# into something like `int.__eq__(3, 4)` instead of `(3).__eq__(4)` as an
# optimization.
#
# While it normally it doesn't matter which of the two versions are used, it
# does cause inconsistencies when working with classes. For example, translating
# `int == int` to `int.__eq__(int)` would not work since `int.__eq__` is meant to
# compare two int _instances_. What we really want is `type(int).__eq__`, which
# is meant to compare two types or classes.
#
# This check makes sure that when we encounter an operator, we skip looking up
# the corresponding method in the current instance to avoid this edge case.
# See https://github.com/python/mypy/pull/1787 for more info.
# TODO: do not rely on same type variables being present in all constructor overloads.
result = analyze_class_attribute_access(
ret_type, name, mx, original_vars=typ.items[0].variables, mcs_fallback=typ.fallback
)
if result:
return result
# Look up from the 'type' type.
return _analyze_member_access(name, typ.fallback, mx)
else:
assert False, f"Unexpected type {ret_type!r}"
def analyze_type_type_member_access(
name: str, typ: TypeType, mx: MemberContext, override_info: TypeInfo | None
) -> Type:
# Similar to analyze_type_callable_attribute_access.
item = None
fallback = mx.named_type("builtins.type")
if isinstance(typ.item, Instance):
item = typ.item
elif isinstance(typ.item, AnyType):
with mx.msg.filter_errors():
return _analyze_member_access(name, fallback, mx, override_info)
elif isinstance(typ.item, TypeVarType):
upper_bound = get_proper_type(typ.item.upper_bound)
if isinstance(upper_bound, Instance):
item = upper_bound
elif isinstance(upper_bound, UnionType):
return _analyze_member_access(
name,
TypeType.make_normalized(upper_bound, line=typ.line, column=typ.column),
mx,
override_info,
)
elif isinstance(upper_bound, TupleType):
item = tuple_fallback(upper_bound)
elif isinstance(upper_bound, AnyType):
with mx.msg.filter_errors():
return _analyze_member_access(name, fallback, mx, override_info)
elif isinstance(typ.item, TupleType):
item = tuple_fallback(typ.item)
elif isinstance(typ.item, FunctionLike) and typ.item.is_type_obj():
item = typ.item.fallback
elif isinstance(typ.item, TypeType):
# Access member on metaclass object via Type[Type[C]]
if isinstance(typ.item.item, Instance):
item = typ.item.item.type.metaclass_type
ignore_messages = False
if item is not None:
fallback = item.type.metaclass_type or fallback
if item and not mx.is_operator:
# See comment above for why operators are skipped
result = analyze_class_attribute_access(
item, name, mx, mcs_fallback=fallback, override_info=override_info
)
if result:
if not (isinstance(get_proper_type(result), AnyType) and item.type.fallback_to_any):
return result
else:
# We don't want errors on metaclass lookup for classes with Any fallback
ignore_messages = True
with mx.msg.filter_errors(filter_errors=ignore_messages):
return _analyze_member_access(name, fallback, mx, override_info)
def analyze_union_member_access(name: str, typ: UnionType, mx: MemberContext) -> Type:
with mx.msg.disable_type_names():
results = []
for subtype in typ.relevant_items():
# Self types should be bound to every individual item of a union.
item_mx = mx.copy_modified(self_type=subtype)
results.append(_analyze_member_access(name, subtype, item_mx))
return make_simplified_union(results)
def analyze_none_member_access(name: str, typ: NoneType, mx: MemberContext) -> Type:
if name == "__bool__":
literal_false = LiteralType(False, fallback=mx.named_type("builtins.bool"))
return CallableType(
arg_types=[],
arg_kinds=[],
arg_names=[],
ret_type=literal_false,
fallback=mx.named_type("builtins.function"),
)
else:
return _analyze_member_access(name, mx.named_type("builtins.object"), mx)
def analyze_member_var_access(
name: str, itype: Instance, info: TypeInfo, mx: MemberContext
) -> Type:
"""Analyse attribute access that does not target a method.
This is logically part of analyze_member_access and the arguments are similar.
original_type is the type of E in the expression E.var
"""
# It was not a method. Try looking up a variable.
node = info.get(name)
v = node.node if node else None
mx.chk.warn_deprecated(v, mx.context)
vv = v
is_trivial_self = False
if isinstance(vv, Decorator):
# The associated Var node of a decorator contains the type.
v = vv.var
is_trivial_self = vv.func.is_trivial_self and not vv.decorators
if mx.is_super and not mx.suppress_errors:
validate_super_call(vv.func, mx)
if isinstance(v, FuncDef):
assert False, "Did not expect a function"
if isinstance(v, MypyFile):
# Special case: accessing module on instances is allowed, but will not
# be recorded by semantic analyzer.
mx.chk.module_refs.add(v.fullname)
if isinstance(vv, (TypeInfo, TypeAlias, MypyFile, TypeVarLikeExpr)):
# If the associated variable is a TypeInfo synthesize a Var node for
# the purposes of type checking. This enables us to type check things
# like accessing class attributes on an inner class. Similar we allow
# using qualified type aliases in runtime context. For example:
# class C:
# A = List[int]
# x = C.A() <- this is OK
typ = mx.chk.expr_checker.analyze_static_reference(vv, mx.context, mx.is_lvalue)
v = Var(name, type=typ)
v.info = info
if isinstance(v, Var):
implicit = info[name].implicit
# An assignment to final attribute is always an error,
# independently of types.
if mx.is_lvalue and not mx.chk.get_final_context():
check_final_member(name, info, mx.msg, mx.context)
return analyze_var(name, v, itype, mx, implicit=implicit, is_trivial_self=is_trivial_self)
elif (
not v
and name not in ["__getattr__", "__setattr__", "__getattribute__"]
and not mx.is_operator
and mx.module_symbol_table is None
):
# Above we skip ModuleType.__getattr__ etc. if we have a
# module symbol table, since the symbol table allows precise
# checking.
if not mx.is_lvalue:
for method_name in ("__getattribute__", "__getattr__"):
method = info.get_method(method_name)
# __getattribute__ is defined on builtins.object and returns Any, so without
# the guard this search will always find object.__getattribute__ and conclude
# that the attribute exists
if method and method.info.fullname != "builtins.object":
bound_method = analyze_decorator_or_funcbase_access(
defn=method, itype=itype, name=method_name, mx=mx
)
typ = map_instance_to_supertype(itype, method.info)
getattr_type = get_proper_type(expand_type_by_instance(bound_method, typ))
if isinstance(getattr_type, CallableType):
result = getattr_type.ret_type
else:
result = getattr_type
# Call the attribute hook before returning.
fullname = f"{method.info.fullname}.{name}"
hook = mx.chk.plugin.get_attribute_hook(fullname)
if hook:
result = hook(
AttributeContext(
get_proper_type(mx.original_type),
result,
mx.is_lvalue,
mx.context,
mx.chk,
)
)
return result
else:
setattr_meth = info.get_method("__setattr__")
if setattr_meth and setattr_meth.info.fullname != "builtins.object":
bound_type = analyze_decorator_or_funcbase_access(
defn=setattr_meth,
itype=itype,
name="__setattr__",
mx=mx.copy_modified(is_lvalue=False),
)
typ = map_instance_to_supertype(itype, setattr_meth.info)
setattr_type = get_proper_type(expand_type_by_instance(bound_type, typ))
if isinstance(setattr_type, CallableType) and len(setattr_type.arg_types) > 0:
return setattr_type.arg_types[-1]
if itype.type.fallback_to_any:
return AnyType(TypeOfAny.special_form)
# Could not find the member.
if itype.extra_attrs and name in itype.extra_attrs.attrs:
# For modules use direct symbol table lookup.
if not itype.extra_attrs.mod_name:
return itype.extra_attrs.attrs[name]
if mx.is_super and not mx.suppress_errors:
mx.msg.undefined_in_superclass(name, mx.context)
return AnyType(TypeOfAny.from_error)
else:
ret = report_missing_attribute(mx.original_type, itype, name, mx)
# Avoid paying double jeopardy if we can't find the member due to --no-implicit-reexport
if (
mx.module_symbol_table is not None
and name in mx.module_symbol_table
and not mx.module_symbol_table[name].module_public
):
v = mx.module_symbol_table[name].node
e = NameExpr(name)
e.set_line(mx.context)
e.node = v
return mx.chk.expr_checker.analyze_ref_expr(e, lvalue=mx.is_lvalue)
return ret
def check_final_member(name: str, info: TypeInfo, msg: MessageBuilder, ctx: Context) -> None:
"""Give an error if the name being assigned was declared as final."""
for base in info.mro:
sym = base.names.get(name)
if sym and is_final_node(sym.node):
msg.cant_assign_to_final(name, attr_assign=True, ctx=ctx)
def analyze_descriptor_access(descriptor_type: Type, mx: MemberContext) -> Type:
"""Type check descriptor access.
Arguments:
descriptor_type: The type of the descriptor attribute being accessed
(the type of ``f`` in ``a.f`` when ``f`` is a descriptor).
mx: The current member access context.
Return:
The return type of the appropriate ``__get__/__set__`` overload for the descriptor.
"""
instance_type = get_proper_type(mx.self_type)
orig_descriptor_type = descriptor_type
descriptor_type = get_proper_type(descriptor_type)
if isinstance(descriptor_type, UnionType):
# Map the access over union types
return make_simplified_union(
[analyze_descriptor_access(typ, mx) for typ in descriptor_type.items]
)
elif not isinstance(descriptor_type, Instance):
return orig_descriptor_type
if not mx.is_lvalue and not descriptor_type.type.has_readable_member("__get__"):
return orig_descriptor_type
# We do this check first to accommodate for descriptors with only __set__ method.
# If there is no __set__, we type-check that the assigned value matches
# the return type of __get__. This doesn't match the python semantics,
# (which allow you to override the descriptor with any value), but preserves
# the type of accessing the attribute (even after the override).
if mx.is_lvalue and descriptor_type.type.has_readable_member("__set__"):
return analyze_descriptor_assign(descriptor_type, mx)
if mx.is_lvalue and not descriptor_type.type.has_readable_member("__get__"):
# This turned out to be not a descriptor after all.
return orig_descriptor_type
dunder_get = descriptor_type.type.get_method("__get__")
if dunder_get is None:
mx.fail(
message_registry.DESCRIPTOR_GET_NOT_CALLABLE.format(
descriptor_type.str_with_options(mx.msg.options)
)
)
return AnyType(TypeOfAny.from_error)
bound_method = analyze_decorator_or_funcbase_access(
defn=dunder_get,
itype=descriptor_type,
name="__get__",
mx=mx.copy_modified(self_type=descriptor_type),
)
typ = map_instance_to_supertype(descriptor_type, dunder_get.info)
dunder_get_type = expand_type_by_instance(bound_method, typ)
if isinstance(instance_type, FunctionLike) and instance_type.is_type_obj():
owner_type = instance_type.items[0].ret_type
instance_type = NoneType()
elif isinstance(instance_type, TypeType):
owner_type = instance_type.item
instance_type = NoneType()
else:
owner_type = instance_type
callable_name = mx.chk.expr_checker.method_fullname(descriptor_type, "__get__")
dunder_get_type = mx.chk.expr_checker.transform_callee_type(
callable_name,
dunder_get_type,
[
TempNode(instance_type, context=mx.context),
TempNode(TypeType.make_normalized(owner_type), context=mx.context),
],
[ARG_POS, ARG_POS],
mx.context,
object_type=descriptor_type,
)
_, inferred_dunder_get_type = mx.chk.expr_checker.check_call(
dunder_get_type,
[
TempNode(instance_type, context=mx.context),
TempNode(TypeType.make_normalized(owner_type), context=mx.context),
],
[ARG_POS, ARG_POS],
mx.context,
object_type=descriptor_type,
callable_name=callable_name,
)
# Search for possible deprecations:
mx.chk.warn_deprecated(dunder_get, mx.context)
inferred_dunder_get_type = get_proper_type(inferred_dunder_get_type)
if isinstance(inferred_dunder_get_type, AnyType):
# check_call failed, and will have reported an error
return inferred_dunder_get_type
if not isinstance(inferred_dunder_get_type, CallableType):
mx.fail(
message_registry.DESCRIPTOR_GET_NOT_CALLABLE.format(
descriptor_type.str_with_options(mx.msg.options)
)
)
return AnyType(TypeOfAny.from_error)
return inferred_dunder_get_type.ret_type
def analyze_descriptor_assign(descriptor_type: Instance, mx: MemberContext) -> Type:
instance_type = get_proper_type(mx.self_type)
dunder_set = descriptor_type.type.get_method("__set__")
if dunder_set is None:
mx.fail(
message_registry.DESCRIPTOR_SET_NOT_CALLABLE.format(
descriptor_type.str_with_options(mx.msg.options)
).value
)
return AnyType(TypeOfAny.from_error)
bound_method = analyze_decorator_or_funcbase_access(
defn=dunder_set,
itype=descriptor_type,
name="__set__",
mx=mx.copy_modified(is_lvalue=False, self_type=descriptor_type),
)
typ = map_instance_to_supertype(descriptor_type, dunder_set.info)
dunder_set_type = expand_type_by_instance(bound_method, typ)
callable_name = mx.chk.expr_checker.method_fullname(descriptor_type, "__set__")
rvalue = mx.rvalue or TempNode(AnyType(TypeOfAny.special_form), context=mx.context)
dunder_set_type = mx.chk.expr_checker.transform_callee_type(
callable_name,
dunder_set_type,
[TempNode(instance_type, context=mx.context), rvalue],
[ARG_POS, ARG_POS],
mx.context,
object_type=descriptor_type,
)
# For non-overloaded setters, the result should be type-checked like a regular assignment.
# Hence, we first only try to infer the type by using the rvalue as type context.
type_context = rvalue
with mx.msg.filter_errors():
_, inferred_dunder_set_type = mx.chk.expr_checker.check_call(
dunder_set_type,
[TempNode(instance_type, context=mx.context), type_context],
[ARG_POS, ARG_POS],
mx.context,
object_type=descriptor_type,
callable_name=callable_name,
)
# And now we in fact type check the call, to show errors related to wrong arguments
# count, etc., replacing the type context for non-overloaded setters only.
inferred_dunder_set_type = get_proper_type(inferred_dunder_set_type)
if isinstance(inferred_dunder_set_type, CallableType):
type_context = TempNode(AnyType(TypeOfAny.special_form), context=mx.context)
mx.chk.expr_checker.check_call(
dunder_set_type,
[TempNode(instance_type, context=mx.context), type_context],
[ARG_POS, ARG_POS],
mx.context,
object_type=descriptor_type,
callable_name=callable_name,
)
# Search for possible deprecations:
mx.chk.warn_deprecated(dunder_set, mx.context)
# In the following cases, a message already will have been recorded in check_call.
if (not isinstance(inferred_dunder_set_type, CallableType)) or (
len(inferred_dunder_set_type.arg_types) < 2
):
return AnyType(TypeOfAny.from_error)
return inferred_dunder_set_type.arg_types[1]
def is_instance_var(var: Var) -> bool:
"""Return if var is an instance variable according to PEP 526."""
return (
# check the type_info node is the var (not a decorated function, etc.)
var.name in var.info.names
and var.info.names[var.name].node is var
and not var.is_classvar
# variables without annotations are treated as classvar
and not var.is_inferred
)
def analyze_var(
name: str,
var: Var,
itype: Instance,
mx: MemberContext,
*,
implicit: bool = False,
is_trivial_self: bool = False,
) -> Type:
"""Analyze access to an attribute via a Var node.
This is conceptually part of analyze_member_access and the arguments are similar.
itype is the instance type in which attribute should be looked up
original_type is the type of E in the expression E.var
if implicit is True, the original Var was created as an assignment to self
if is_trivial_self is True, we can use fast path for bind_self().
"""
# Found a member variable.
original_itype = itype
itype = map_instance_to_supertype(itype, var.info)
if var.is_settable_property and mx.is_lvalue:
typ: Type | None = var.setter_type
if typ is None and var.is_ready:
# Existing synthetic properties may not set setter type. Fall back to getter.
typ = var.type
else:
typ = var.type
if typ:
if isinstance(typ, PartialType):
return mx.chk.handle_partial_var_type(typ, mx.is_lvalue, var, mx.context)
if mx.is_lvalue and not mx.suppress_errors:
if var.is_property and not var.is_settable_property:
mx.msg.read_only_property(name, itype.type, mx.context)
if var.is_classvar:
mx.msg.cant_assign_to_classvar(name, mx.context)
# This is the most common case for variables, so start with this.
result = expand_without_binding(typ, var, itype, original_itype, mx)
# A non-None value indicates that we should actually bind self for this variable.
call_type: ProperType | None = None
if var.is_initialized_in_class and (not is_instance_var(var) or mx.is_operator):
typ = get_proper_type(typ)
if isinstance(typ, FunctionLike) and not typ.is_type_obj():
call_type = typ
elif var.is_property:
deco_mx = mx.copy_modified(original_type=typ, self_type=typ, is_lvalue=False)
call_type = get_proper_type(_analyze_member_access("__call__", typ, deco_mx))
else:
call_type = typ
# Bound variables with callable types are treated like methods
# (these are usually method aliases like __rmul__ = __mul__).
if isinstance(call_type, FunctionLike) and not call_type.is_type_obj():
if mx.is_lvalue and not var.is_property and not mx.suppress_errors:
mx.msg.cant_assign_to_method(mx.context)
# Bind the self type for each callable component (when needed).
if call_type and not var.is_staticmethod:
bound_items = []
for ct in call_type.items if isinstance(call_type, UnionType) else [call_type]:
p_ct = get_proper_type(ct)
if isinstance(p_ct, FunctionLike) and (not p_ct.bound() or var.is_property):
item = expand_and_bind_callable(p_ct, var, itype, name, mx, is_trivial_self)
else:
item = expand_without_binding(ct, var, itype, original_itype, mx)
bound_items.append(item)
result = UnionType.make_union(bound_items)
else:
if not var.is_ready and not mx.no_deferral:
mx.not_ready_callback(var.name, mx.context)
# Implicit 'Any' type.
result = AnyType(TypeOfAny.special_form)
fullname = f"{var.info.fullname}.{name}"
hook = mx.chk.plugin.get_attribute_hook(fullname)
if var.info.is_enum and not mx.is_lvalue:
if name in var.info.enum_members and name not in {"name", "value"}:
enum_literal = LiteralType(name, fallback=itype)
result = itype.copy_modified(last_known_value=enum_literal)
elif (
isinstance(p_result := get_proper_type(result), Instance)
and p_result.type.fullname == "enum.nonmember"
and p_result.args
):
# Unwrap nonmember similar to class-level access
result = p_result.args[0]
if result and not (implicit or var.info.is_protocol and is_instance_var(var)):
result = analyze_descriptor_access(result, mx)
if hook:
result = hook(
AttributeContext(
get_proper_type(mx.original_type), result, mx.is_lvalue, mx.context, mx.chk
)
)
return result
def expand_without_binding(
typ: Type, var: Var, itype: Instance, original_itype: Instance, mx: MemberContext
) -> Type:
if not mx.preserve_type_var_ids:
typ = freshen_all_functions_type_vars(typ)
typ = expand_self_type_if_needed(typ, mx, var, original_itype)
expanded = expand_type_by_instance(typ, itype)
freeze_all_type_vars(expanded)
return expanded
def expand_and_bind_callable(
functype: FunctionLike,
var: Var,
itype: Instance,
name: str,
mx: MemberContext,
is_trivial_self: bool,
) -> Type:
if not mx.preserve_type_var_ids:
functype = freshen_all_functions_type_vars(functype)
typ = get_proper_type(expand_self_type(var, functype, mx.self_type))
assert isinstance(typ, FunctionLike)
if is_trivial_self:
typ = bind_self_fast(typ, mx.self_type)
else:
typ = check_self_arg(typ, mx.self_type, var.is_classmethod, mx.context, name, mx.msg)
typ = bind_self(typ, mx.self_type, var.is_classmethod)
expanded = expand_type_by_instance(typ, itype)
freeze_all_type_vars(expanded)
if not var.is_property:
return expanded
if isinstance(expanded, Overloaded):
# Legacy way to store settable properties is with overloads. Also in case it is
# an actual overloaded property, selecting first item that passed check_self_arg()
# is a good approximation, long-term we should use check_call() inference below.
if not expanded.items:
# A broken overload, error should be already reported.
return AnyType(TypeOfAny.from_error)
expanded = expanded.items[0]
assert isinstance(expanded, CallableType), expanded
if var.is_settable_property and mx.is_lvalue and var.setter_type is not None:
if expanded.variables:
type_ctx = mx.rvalue or TempNode(AnyType(TypeOfAny.special_form), context=mx.context)
_, inferred_expanded = mx.chk.expr_checker.check_call(
expanded, [type_ctx], [ARG_POS], mx.context
)