forked from python/mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-unreachable-code.test
1589 lines (1324 loc) · 41.9 KB
/
check-unreachable-code.test
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 checker test cases for conditional checks that result in some
-- blocks classified as unreachable (they are not type checked or semantically
-- analyzed).
--
-- For example, we skip blocks that will not be executed on the active
-- Python version.
[case testConditionalTypeAliasPY3]
import typing
def f(): pass
PY3 = f()
if PY3:
t = int
x = object() + 'x' # E: Unsupported left operand type for + ("object")
else:
t = str
y = 'x' / 1
x
z = 1 # type: t
[case testConditionalAssignmentPY2]
import typing
def f(): pass
PY2 = f()
if PY2:
x = object() + 'x'
else:
y = 'x' / 1 # E: Unsupported left operand type for / ("str")
y
[case testConditionalImport]
import typing
def f(): pass
PY2 = f()
if PY2:
import fuzzybar
from barbar import *
from pawwaw import a, bc
else:
import m
[file m.py]
import typing
x = 1
if int():
x = 'a'
[out]
tmp/m.py:4: error: Incompatible types in assignment (expression has type "str", variable has type "int")
[case testNegatedMypyConditional]
import typing
MYPY = 0
if not MYPY:
import xyz753
else:
import pow123 # E
[builtins fixtures/bool.pyi]
[out]
main:6: error: Cannot find implementation or library stub for module named "pow123"
main:6: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testMypyConditional]
import typing
MYPY = 0
if MYPY:
None + 1 # E: Unsupported left operand type for + ("None")
else:
None + ''
[builtins fixtures/bool.pyi]
[case testTypeCheckingConditional]
import typing
if typing.TYPE_CHECKING:
import pow123 # E
else:
import xyz753
[typing fixtures/typing-medium.pyi]
[out]
main:3: error: Cannot find implementation or library stub for module named "pow123"
main:3: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testTypeCheckingConditionalFromImport]
from typing import TYPE_CHECKING
if TYPE_CHECKING:
import pow123 # E
else:
import xyz753
[typing fixtures/typing-medium.pyi]
[out]
main:3: error: Cannot find implementation or library stub for module named "pow123"
main:3: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testNegatedTypeCheckingConditional]
import typing
if not typing.TYPE_CHECKING:
import pow123 # E
else:
import xyz753
[builtins fixtures/bool.pyi]
[typing fixtures/typing-medium.pyi]
[out]
main:5: error: Cannot find implementation or library stub for module named "xyz753"
main:5: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testUndefinedTypeCheckingConditional]
if not TYPE_CHECKING: # E
import pow123
else:
import xyz753
[builtins fixtures/bool.pyi]
[out]
main:1: error: Name "TYPE_CHECKING" is not defined
main:4: error: Cannot find implementation or library stub for module named "xyz753"
main:4: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testConditionalClassDefPY3]
def f(): pass
PY3 = f()
if PY3:
pass
else:
class X(object):
pass
[case testUnreachabilityAndElifPY3]
def f(): pass
PY3 = f()
if PY3:
pass
elif bool():
import nonexistent
1 + ''
else:
import bad_name
1 + ''
[builtins fixtures/bool.pyi]
[out]
[case testSysVersionInfo]
import sys
if sys.version_info[0] >= 3:
def foo() -> int: return 0
else:
def foo() -> str: return ''
reveal_type(foo()) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoReversedOperandsOrder]
import sys
if (3,) <= sys.version_info:
def foo() -> int: return 0
else:
def foo() -> str: return ''
reveal_type(foo()) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoNegated]
import sys
if not (sys.version_info[0] < 3):
def foo() -> int: return 0
else:
def foo() -> str: return ''
reveal_type(foo()) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced1]
import sys
if sys.version_info[:1] >= (3,):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced2]
import sys
if sys.version_info[:2] >= (3, 0):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced3]
import sys
if sys.version_info[:] >= (3, 0):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced4]
import sys
if sys.version_info[0:2] >= (3, 0):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced5]
import sys
if sys.version_info[0:] >= (3,):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced6]
import sys
if sys.version_info[1:] >= (5,):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced7]
import sys
if sys.version_info >= (3, 5):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced8]
# Our pyversion only has (major, minor),
# so testing for (major, minor, bugfix) is unsupported.
import sys
if sys.version_info >= (3, 5, 0):
def foo() -> int: return 0
else:
def foo() -> str: return '' # E: All conditional function variants must have identical signatures \
# N: Original: \
# N: def foo() -> int \
# N: Redefinition: \
# N: def foo() -> str
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoSliced9]
# Our pyversion only has (major, minor),
# so testing for (minor, bugfix) is unsupported (also it's silly :-).
import sys
if sys.version_info[1:] >= (5, 0):
def foo() -> int: return 0
else:
def foo() -> str: return '' # E: All conditional function variants must have identical signatures \
# N: Original: \
# N: def foo() -> int \
# N: Redefinition: \
# N: def foo() -> str
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatform1]
import sys
if sys.platform == 'fictional':
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + ''
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatform2]
import sys
if sys.platform != 'fictional':
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformNegated]
import sys
if not (sys.platform == 'fictional'):
def foo() -> int: return 0
else:
def foo() -> str: return ''
foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoClass]
import sys
if sys.version_info < (3, 5):
class C:
pass
else:
class C:
def foo(self) -> int: return 0
C().foo() + 0
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoImport]
import sys
if sys.version_info >= (3, 5):
import collections
else:
collections = None
Pt = collections.namedtuple('Pt', 'x y z')
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoVariable]
import sys
if sys.version_info >= (3, 5):
x = ''
else:
x = 0
x + ''
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoInClass]
import sys
class C:
if sys.version_info >= (3, 5):
def foo(self) -> int: return 0
else:
def foo(self) -> str: return ''
reveal_type(C().foo()) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testSysVersionInfoInFunction]
import sys
def foo() -> None:
if sys.version_info >= (3, 5):
x = ''
else:
x = 0
reveal_type(x) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformInMethod]
import sys
class C:
def foo(self) -> None:
if sys.platform != 'fictional':
x = ''
else:
x = 0
reveal_type(x) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformInFunctionImport1]
import sys
def foo() -> None:
if sys.platform != 'fictional':
import a
else:
import b as a
a.x
[file a.py]
x = 1
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformInFunctionImport2]
import sys
def foo() -> None:
if sys.platform == 'fictional':
import b as a
else:
import a
a.x
[file a.py]
x = 1
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformInFunctionImport3]
from typing import Callable
import sys
def idf(x: Callable[[], None]) -> Callable[[], None]: return x
@idf
def foo() -> None:
if sys.platform == 'fictional':
import b as a
else:
import a
a.x
[file a.py]
x = 1
[builtins fixtures/ops.pyi]
[out]
[case testSysPlatformInMethodImport2]
import sys
class A:
def foo(self) -> None:
if sys.platform == 'fictional':
import b as a
else:
import a
a.x
[file a.py]
x = 1
[builtins fixtures/ops.pyi]
[out]
[case testCustomSysVersionInfo]
# flags: --python-version 3.11
import sys
if sys.version_info == (3, 11):
x = "foo"
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[out]
[case testCustomSysVersionInfo2]
# flags: --python-version 3.11
import sys
if sys.version_info == (3, 6):
x = "foo"
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testCustomSysPlatform]
# flags: --platform linux
import sys
if sys.platform == 'linux':
x = "foo"
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[out]
[case testCustomSysPlatform2]
# flags: --platform win32
import sys
if sys.platform == 'linux':
x = "foo"
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[out]
[case testCustomSysPlatformStartsWith]
# flags: --platform win32
import sys
if sys.platform.startswith('win'):
x = "foo"
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[out]
[case testShortCircuitInExpression]
import typing
def make() -> bool: pass
PY2 = PY3 = make()
a = PY2 and 's'
b = PY3 and 's'
c = PY2 or 's'
d = PY3 or 's'
e = (PY2 or PY3) and 's'
f = (PY3 or PY2) and 's'
g = (PY2 or PY3) or 's'
h = (PY3 or PY2) or 's'
reveal_type(a) # N: Revealed type is "builtins.bool"
reveal_type(b) # N: Revealed type is "Literal['s']"
reveal_type(c) # N: Revealed type is "Literal['s']"
reveal_type(d) # N: Revealed type is "builtins.bool"
reveal_type(e) # N: Revealed type is "Literal['s']"
reveal_type(f) # N: Revealed type is "Literal['s']"
reveal_type(g) # N: Revealed type is "builtins.bool"
reveal_type(h) # N: Revealed type is "builtins.bool"
[builtins fixtures/ops.pyi]
[out]
[case testConditionalValuesBinaryOps]
# flags: --platform linux
import sys
t_and_t = (sys.platform == 'linux' and sys.platform == 'linux') and 's'
t_or_t = (sys.platform == 'linux' or sys.platform == 'linux') and 's'
t_and_f = (sys.platform == 'linux' and sys.platform == 'windows') and 's'
t_or_f = (sys.platform == 'linux' or sys.platform == 'windows') and 's'
f_and_t = (sys.platform == 'windows' and sys.platform == 'linux') and 's'
f_or_t = (sys.platform == 'windows' or sys.platform == 'linux') and 's'
f_and_f = (sys.platform == 'windows' and sys.platform == 'windows') and 's'
f_or_f = (sys.platform == 'windows' or sys.platform == 'windows') and 's'
reveal_type(t_and_t) # N: Revealed type is "Literal['s']"
reveal_type(t_or_t) # N: Revealed type is "Literal['s']"
reveal_type(f_and_t) # N: Revealed type is "builtins.bool"
reveal_type(f_or_t) # N: Revealed type is "Literal['s']"
reveal_type(t_and_f) # N: Revealed type is "builtins.bool"
reveal_type(t_or_f) # N: Revealed type is "Literal['s']"
reveal_type(f_and_f) # N: Revealed type is "builtins.bool"
reveal_type(f_or_f) # N: Revealed type is "builtins.bool"
[builtins fixtures/ops.pyi]
[case testConditionalValuesNegation]
# flags: --platform linux
import sys
not_t = not sys.platform == 'linux' and 's'
not_f = not sys.platform == 'windows' and 's'
not_and_t = not (sys.platform == 'linux' and sys.platform == 'linux') and 's'
not_and_f = not (sys.platform == 'linux' and sys.platform == 'windows') and 's'
not_or_t = not (sys.platform == 'linux' or sys.platform == 'linux') and 's'
not_or_f = not (sys.platform == 'windows' or sys.platform == 'windows') and 's'
reveal_type(not_t) # N: Revealed type is "builtins.bool"
reveal_type(not_f) # N: Revealed type is "Literal['s']"
reveal_type(not_and_t) # N: Revealed type is "builtins.bool"
reveal_type(not_and_f) # N: Revealed type is "Literal['s']"
reveal_type(not_or_t) # N: Revealed type is "builtins.bool"
reveal_type(not_or_f) # N: Revealed type is "Literal['s']"
[builtins fixtures/ops.pyi]
[case testConditionalValuesUnsupportedOps]
# flags: --platform linux
import sys
unary_minus = -(sys.platform == 'linux') and 's'
binary_minus = ((sys.platform == 'linux') - (sys.platform == 'linux')) and 's'
reveal_type(unary_minus) # N: Revealed type is "Union[Literal[0], builtins.str]"
reveal_type(binary_minus) # N: Revealed type is "Union[Literal[0], builtins.str]"
[builtins fixtures/ops.pyi]
[case testMypyFalseValuesInBinaryOps_no_empty]
# flags: --platform linux
import sys
from typing import TYPE_CHECKING
MYPY = 0
if TYPE_CHECKING and sys.platform == 'linux':
def foo1() -> int: ...
if sys.platform == 'linux' and TYPE_CHECKING:
def foo2() -> int: ...
if MYPY and sys.platform == 'linux':
def foo3() -> int: ...
if sys.platform == 'linux' and MYPY:
def foo4() -> int: ...
if TYPE_CHECKING or sys.platform == 'linux':
def bar1() -> int: ... # E: Missing return statement
if sys.platform == 'linux' or TYPE_CHECKING:
def bar2() -> int: ... # E: Missing return statement
if MYPY or sys.platform == 'linux':
def bar3() -> int: ... # E: Missing return statement
if sys.platform == 'linux' or MYPY:
def bar4() -> int: ... # E: Missing return statement
[builtins fixtures/ops.pyi]
[case testShortCircuitAndWithConditionalAssignment]
# flags: --platform linux
import sys
def f(): pass
PY2 = f()
if PY2 and sys.platform == 'linux':
x = 'foo'
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.int"
if sys.platform == 'linux' and PY2:
y = 'foo'
else:
y = 3
reveal_type(y) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[case testShortCircuitOrWithConditionalAssignment]
# flags: --platform linux
import sys
def f(): pass
PY2 = f()
if PY2 or sys.platform == 'linux':
x = 'foo'
else:
x = 3
reveal_type(x) # N: Revealed type is "builtins.str"
if sys.platform == 'linux' or PY2:
y = 'foo'
else:
y = 3
reveal_type(y) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[case testShortCircuitNoEvaluation]
# flags: --platform linux --always-false COMPILE_TIME_FALSE
import sys
if sys.platform == 'darwin':
mac_only = 'junk'
# `mac_only` should not be evaluated
if sys.platform == 'darwin' and mac_only:
pass
if sys.platform == 'linux' or mac_only:
pass
COMPILE_TIME_FALSE = 'junk'
if COMPILE_TIME_FALSE:
compile_time_false_only = 'junk'
# `compile_time_false_only` should not be evaluated
if COMPILE_TIME_FALSE and compile_time_false_only:
pass
if not COMPILE_TIME_FALSE or compile_time_false_only:
pass
MYPY = False
if not MYPY:
mypy_only = 'junk'
# `mypy_only` should not be evaluated
if not MYPY and mypy_only:
pass
if MYPY or mypy_only:
pass
[builtins fixtures/ops.pyi]
[case testSemanticAnalysisFalseButTypeNarrowingTrue]
# flags: --always-false COMPILE_TIME_FALSE
from typing import Literal
indeterminate: str
COMPILE_TIME_FALSE: Literal[True] # type-narrowing: mapped in 'if' only
a = COMPILE_TIME_FALSE or indeterminate
reveal_type(a) # N: Revealed type is "builtins.str"
b = indeterminate or COMPILE_TIME_FALSE
reveal_type(b) # N: Revealed type is "Union[builtins.str, Literal[True]]"
[typing fixtures/typing-medium.pyi]
[case testSemanticAnalysisTrueButTypeNarrowingFalse]
# flags: --always-true COMPILE_TIME_TRUE
from typing import Literal
indeterminate: str
COMPILE_TIME_TRUE: Literal[False] # type narrowed to `else` only
a = COMPILE_TIME_TRUE or indeterminate
reveal_type(a) # N: Revealed type is "Literal[False]"
b = indeterminate or COMPILE_TIME_TRUE
reveal_type(b) # N: Revealed type is "Union[builtins.str, Literal[False]]"
[typing fixtures/typing-medium.pyi]
[case testConditionalAssertWithoutElse]
import typing
class A: pass
class B(A): pass
x = A()
reveal_type(x) # N: Revealed type is "__main__.A"
if typing.TYPE_CHECKING:
assert isinstance(x, B)
reveal_type(x) # N: Revealed type is "__main__.B"
reveal_type(x) # N: Revealed type is "__main__.B"
[builtins fixtures/isinstancelist.pyi]
[typing fixtures/typing-medium.pyi]
[case testUnreachableWhenSuperclassIsAny]
from typing import Any
# This can happen if we're importing a class from a missing module
Parent: Any
class Child(Parent):
def foo(self) -> int:
reveal_type(self) # N: Revealed type is "__main__.Child"
if self is None:
reveal_type(self)
return None
reveal_type(self) # N: Revealed type is "__main__.Child"
return 3
def bar(self) -> int:
if 1:
self = super(Child, self).something()
reveal_type(self) # N: Revealed type is "__main__.Child"
if self is None:
reveal_type(self)
return None
reveal_type(self) # N: Revealed type is "__main__.Child"
return 3
[builtins fixtures/isinstance.pyi]
[case testUnreachableWhenSuperclassIsAnyNoStrictOptional]
# flags: --no-strict-optional
from typing import Any
Parent: Any
class Child(Parent):
def foo(self) -> int:
reveal_type(self) # N: Revealed type is "__main__.Child"
if self is None:
reveal_type(self) # N: Revealed type is "None"
return None
reveal_type(self) # N: Revealed type is "__main__.Child"
return 3
[builtins fixtures/isinstance.pyi]
[case testUnreachableAfterToplevelAssert]
import sys
reveal_type(0) # N: Revealed type is "Literal[0]?"
assert sys.platform == 'lol'
reveal_type('') # No error here :-)
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssert2]
import sys
reveal_type(0) # N: Revealed type is "Literal[0]?"
assert sys.version_info[0] == 1
reveal_type('') # No error here :-)
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssert3]
reveal_type(0) # N: Revealed type is "Literal[0]?"
MYPY = False
assert not MYPY
reveal_type('') # No error here :-)
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssert4]
# flags: --always-false NOPE
reveal_type(0) # N: Revealed type is "Literal[0]?"
NOPE = False
assert NOPE
reveal_type('') # No error here :-)
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssertImport]
import foo
foo.bar() # E: "object" has no attribute "bar"
[file foo.py]
import sys
assert sys.platform == 'lol'
def bar() -> None: pass
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssertImport2]
# flags: --platform lol
import foo
foo.bar() # No error :-)
[file foo.py]
import sys
assert sys.platform == 'lol'
def bar() -> None: pass
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssertNotInsideIf]
import sys
if sys.version_info[0] >= 2:
assert sys.platform == 'lol'
reveal_type('') # N: Revealed type is "Literal['']?"
reveal_type('') # N: Revealed type is "Literal['']?"
[builtins fixtures/ops.pyi]
[case testUnreachableFlagWithBadControlFlow1]
# flags: --warn-unreachable
a: int
if isinstance(a, int):
reveal_type(a) # N: Revealed type is "builtins.int"
else:
reveal_type(a) # E: Statement is unreachable
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagWithBadControlFlow2]
# flags: --warn-unreachable
b: int
while isinstance(b, int):
reveal_type(b) # N: Revealed type is "builtins.int"
else:
reveal_type(b) # E: Statement is unreachable
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagWithBadControlFlow3]
# flags: --warn-unreachable
def foo(c: int) -> None:
reveal_type(c) # N: Revealed type is "builtins.int"
assert not isinstance(c, int)
reveal_type(c) # E: Statement is unreachable
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagWithBadControlFlow4]
# flags: --warn-unreachable
d: int
if False:
reveal_type(d) # E: Statement is unreachable
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagWithBadControlFlow5]
# flags: --warn-unreachable
e: int
if True:
reveal_type(e) # N: Revealed type is "builtins.int"
else:
reveal_type(e) # E: Statement is unreachable
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagStatementAfterReturn]
# flags: --warn-unreachable
def foo(x: int) -> None:
reveal_type(x) # N: Revealed type is "builtins.int"
return
reveal_type(x) # E: Statement is unreachable
[case testUnreachableFlagTryBlocks]
# flags: --warn-unreachable
def foo(x: int) -> int:
try:
reveal_type(x) # N: Revealed type is "builtins.int"
return x
reveal_type(x) # E: Statement is unreachable
finally:
reveal_type(x) # N: Revealed type is "builtins.int"
if True:
reveal_type(x) # N: Revealed type is "builtins.int"
else:
reveal_type(x) # E: Statement is unreachable
def bar(x: int) -> int:
try:
if True:
raise Exception()
reveal_type(x) # E: Statement is unreachable
except:
reveal_type(x) # N: Revealed type is "builtins.int"
return x
else:
reveal_type(x) # E: Statement is unreachable
def baz(x: int) -> int:
try:
reveal_type(x) # N: Revealed type is "builtins.int"
except:
# Mypy assumes all lines could throw an exception
reveal_type(x) # N: Revealed type is "builtins.int"
return x
else:
reveal_type(x) # N: Revealed type is "builtins.int"
return x
[builtins fixtures/exception.pyi]
[case testUnreachableFlagIgnoresSemanticAnalysisUnreachable]
# flags: --warn-unreachable --python-version 3.8 --platform win32 --always-false FOOBAR
import sys
from typing import TYPE_CHECKING
x: int
if TYPE_CHECKING:
reveal_type(x) # N: Revealed type is "builtins.int"
else:
reveal_type(x)
if not TYPE_CHECKING:
reveal_type(x)
else:
reveal_type(x) # N: Revealed type is "builtins.int"
if sys.platform == 'darwin':
reveal_type(x)
else:
reveal_type(x) # N: Revealed type is "builtins.int"
if sys.platform == 'win32':
reveal_type(x) # N: Revealed type is "builtins.int"
else:
reveal_type(x)
if sys.version_info == (2, 7):
reveal_type(x)
else:
reveal_type(x) # N: Revealed type is "builtins.int"
if sys.version_info == (3, 8):
reveal_type(x) # N: Revealed type is "builtins.int"
else:
reveal_type(x)
FOOBAR = ""
if FOOBAR:
reveal_type(x)
else:
reveal_type(x) # N: Revealed type is "builtins.int"
[builtins fixtures/ops.pyi]
[typing fixtures/typing-medium.pyi]
[case testUnreachableFlagIgnoresSemanticAnalysisExprUnreachable]
# flags: --warn-unreachable --always-false FOOBAR
import sys
from typing import TYPE_CHECKING
FOOBAR = ""
def foo() -> bool: ...
lst = [1, 2, 3]
a = FOOBAR and foo()
b = (not FOOBAR) or foo()
c = 1 if FOOBAR else 2
d = [x for x in lst if FOOBAR]
[builtins fixtures/list.pyi]
[typing fixtures/typing-medium.pyi]
[case testUnreachableFlagOkWithDeadStatements]
# flags: --warn-unreachable
from typing import NoReturn
def assert_never(x: NoReturn) -> NoReturn:
assert False
def nonthrowing_assert_never(x: NoReturn) -> None: ...
def expect_str(x: str) -> str: pass
x: int
if False:
assert False
reveal_type(x) # E: Statement is unreachable
if False:
raise Exception()
reveal_type(x) # E: Statement is unreachable
if False:
assert_never(x)
reveal_type(x) # E: Statement is unreachable
if False:
nonthrowing_assert_never(x) # E: Statement is unreachable
reveal_type(x)
if False:
# Ignore obvious type errors
assert_never(expect_str(x))
reveal_type(x) # E: Statement is unreachable
[builtins fixtures/exception.pyi]
[case testNeverVariants]
from typing import Never
from typing_extensions import Never as TENever
from typing import NoReturn
from typing_extensions import NoReturn as TENoReturn
from mypy_extensions import NoReturn as MENoReturn
bottom1: Never
reveal_type(bottom1) # N: Revealed type is "Never"
bottom2: TENever
reveal_type(bottom2) # N: Revealed type is "Never"
bottom3: NoReturn
reveal_type(bottom3) # N: Revealed type is "Never"
bottom4: TENoReturn
reveal_type(bottom4) # N: Revealed type is "Never"
bottom5: MENoReturn
reveal_type(bottom5) # N: Revealed type is "Never"
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagExpressions]
# flags: --warn-unreachable
def foo() -> bool: ...
lst = [1, 2, 3, 4]
a = True or foo() # E: Right operand of "or" is never evaluated
b = 42 or False # E: Right operand of "or" is never evaluated
d = False and foo() # E: Right operand of "and" is never evaluated
e = True or (True or (True or foo())) # E: Right operand of "or" is never evaluated