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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
|
-- 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 str()
b = PY3 and str()
c = PY2 or str()
d = PY3 or str()
e = (PY2 or PY3) and str()
f = (PY3 or PY2) and str()
g = (PY2 or PY3) or str()
h = (PY3 or PY2) or str()
reveal_type(a) # N: Revealed type is "builtins.bool"
reveal_type(b) # N: Revealed type is "builtins.str"
reveal_type(c) # N: Revealed type is "builtins.str"
reveal_type(d) # N: Revealed type is "builtins.bool"
reveal_type(e) # N: Revealed type is "builtins.str"
reveal_type(f) # N: Revealed type is "builtins.str"
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 str()
t_or_t = (sys.platform == 'linux' or sys.platform == 'linux') and str()
t_and_f = (sys.platform == 'linux' and sys.platform == 'windows') and str()
t_or_f = (sys.platform == 'linux' or sys.platform == 'windows') and str()
f_and_t = (sys.platform == 'windows' and sys.platform == 'linux') and str()
f_or_t = (sys.platform == 'windows' or sys.platform == 'linux') and str()
f_and_f = (sys.platform == 'windows' and sys.platform == 'windows') and str()
f_or_f = (sys.platform == 'windows' or sys.platform == 'windows') and str()
reveal_type(t_and_t) # N: Revealed type is "builtins.str"
reveal_type(t_or_t) # N: Revealed type is "builtins.str"
reveal_type(f_and_t) # N: Revealed type is "builtins.bool"
reveal_type(f_or_t) # N: Revealed type is "builtins.str"
reveal_type(t_and_f) # N: Revealed type is "builtins.bool"
reveal_type(t_or_f) # N: Revealed type is "builtins.str"
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 str()
not_f = not sys.platform == 'windows' and str()
not_and_t = not (sys.platform == 'linux' and sys.platform == 'linux') and str()
not_and_f = not (sys.platform == 'linux' and sys.platform == 'windows') and str()
not_or_t = not (sys.platform == 'linux' or sys.platform == 'linux') and str()
not_or_f = not (sys.platform == 'windows' or sys.platform == 'windows') and str()
reveal_type(not_t) # N: Revealed type is "builtins.bool"
reveal_type(not_f) # N: Revealed type is "builtins.str"
reveal_type(not_and_t) # N: Revealed type is "builtins.bool"
reveal_type(not_and_f) # N: Revealed type is "builtins.str"
reveal_type(not_or_t) # N: Revealed type is "builtins.bool"
reveal_type(not_or_f) # N: Revealed type is "builtins.str"
[builtins fixtures/ops.pyi]
[case testConditionalValuesUnsupportedOps]
# flags: --platform linux
import sys
unary_minus = -(sys.platform == 'linux') and str()
binary_minus = ((sys.platform == 'linux') - (sys.platform == 'linux')) and str()
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 testUnreachableAfterToplevelAssertImportThirdParty]
# flags: --platform unknown
import sys
assert sys.platform == 'linux'
import does_not_exist
[builtins fixtures/ops.pyi]
[case testUnreachableAfterToplevelAssertImportThirdParty2]
# flags: --platform unknown
import sys
import bad; assert sys.platform == 'linux'; import does_not_exist
[builtins fixtures/ops.pyi]
[out]
main:3: error: Cannot find implementation or library stub for module named "bad"
main:3: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[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.9 --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, 9):
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
f = (True or foo()) or (True or foo()) # E: Right operand of "or" is never evaluated
k = [x for x in lst if isinstance(x, int) or foo()] # E: Right operand of "or" is never evaluated
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableFlagMiscTestCaseMissingMethod]
# flags: --warn-unreachable
class Case1:
def test1(self) -> bool:
return False and self.missing() # E: Right operand of "and" is never evaluated
def test2(self) -> bool:
return not self.property_decorator_missing and self.missing() # E: Function "property_decorator_missing" could always be true in boolean context \
# E: Right operand of "and" is never evaluated
def property_decorator_missing(self) -> bool:
return True
[builtins fixtures/bool.pyi]
[case testUnreachableFlagWithGenerics]
# flags: --warn-unreachable
from typing import TypeVar, Generic
T1 = TypeVar('T1', bound=int)
T2 = TypeVar('T2', int, str)
T3 = TypeVar('T3', None, str)
def test1(x: T1) -> T1:
if isinstance(x, int):
reveal_type(x) # N: Revealed type is "T1`-1"
else:
reveal_type(x) # E: Statement is unreachable
return x
def test2(x: T2) -> T2:
if isinstance(x, int):
reveal_type(x) # N: Revealed type is "builtins.int"
else:
reveal_type(x) # N: Revealed type is "builtins.str"
if False:
# This is unreachable, but we don't report an error, unfortunately.
# The presence of the TypeVar with values unfortunately currently shuts
# down type-checking for this entire function.
# TODO: Find a way of removing this limitation
reveal_type(x)
return x
class Test3(Generic[T2]):
x: T2
def func(self) -> None:
if isinstance(self.x, int):
reveal_type(self.x) # N: Revealed type is "builtins.int"
else:
reveal_type(self.x) # N: Revealed type is "builtins.str"
if False:
# Same issue as above
reveal_type(self.x)
class Test4(Generic[T3]):
def __init__(self, x: T3):
# https://github.com/python/mypy/issues/9456
# On TypeVars with value restrictions, we currently have no way
# of checking a statement for all the type expansions.
# Thus unreachable warnings are disabled
if x and False:
pass
# This test should fail after this limitation is removed.
if False and x:
pass
[builtins fixtures/isinstancelist.pyi]
[case testUnreachableBlockStaysUnreachableWithTypeVarConstraints]
# flags: --always-false COMPILE_TIME_FALSE
from typing import TypeVar
COMPILE_TIME_FALSE = False
T = TypeVar("T", int, str)
def foo(x: T) -> T:
if COMPILE_TIME_FALSE:
return "bad"
return x
[case testUnreachableFlagContextManagersNoSuppress]
# flags: --warn-unreachable
from contextlib import contextmanager
from typing import Literal, Optional, Iterator, Any
class DoesNotSuppress1:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Optional[bool]: ...
class DoesNotSuppress2:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Literal[False]: ...
class DoesNotSuppress3:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Any: ...
class DoesNotSuppress4:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> None: ...
@contextmanager
def simple() -> Iterator[int]:
yield 3
def cond() -> bool: ...
def noop() -> None: ...
def f_no_suppress_1a() -> int:
with DoesNotSuppress1():
return 3
noop() # E: Statement is unreachable
def f_no_suppress_1b() -> int:
with DoesNotSuppress1():
if cond():
return 3
else:
return 3
noop() # E: Statement is unreachable
def f_no_suppress_2() -> int:
with DoesNotSuppress2():
return 3
noop() # E: Statement is unreachable
def f_no_suppress_3() -> int:
with DoesNotSuppress3():
return 3
noop() # E: Statement is unreachable
def f_no_suppress_4() -> int:
with DoesNotSuppress4():
return 3
noop() # E: Statement is unreachable
def f_no_suppress_5() -> int:
with simple():
return 3
noop() # E: Statement is unreachable
[typing fixtures/typing-medium.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagContextManagersSuppressed]
# flags: --warn-unreachable
from contextlib import contextmanager
from typing import Optional, Iterator, Literal, Any
class DoesNotSuppress:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Optional[bool]: ...
class Suppresses1:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> bool: ...
class Suppresses2:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Literal[True]: ...
def cond() -> bool: ...
def noop() -> None: ...
def f_suppress_1a() -> int: # E: Missing return statement
with Suppresses1():
return 3
noop()
def f_suppress_1b() -> int: # E: Missing return statement
with Suppresses1():
if cond():
return 3
else:
return 3
noop()
def f_suppress_2() -> int: # E: Missing return statement
with Suppresses2():
return 3
noop()
def f_mix() -> int: # E: Missing return statement
with DoesNotSuppress(), Suppresses1(), DoesNotSuppress():
return 3
noop()
[typing fixtures/typing-medium.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagContextManagersSuppressedNoStrictOptional]
# flags: --warn-unreachable --no-strict-optional
from contextlib import contextmanager
from typing import Optional, Iterator, Literal, Any
class DoesNotSuppress1:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Optional[bool]: ...
# Normally, this should suppress. But when strict-optional mode is disabled, we can't
# necessarily distinguish between bool and Optional[bool]. So we default to assuming
# no suppression, since that's what most context managers will do.
class DoesNotSuppress2:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> bool: ...
# But if we see Literal[True], it's pretty unlikely the return type is actually meant to
# be 'Optional[Literal[True]]'. So, we optimistically assume this is meant to be suppressing.
class Suppresses:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> Literal[True]: ...
def noop() -> None: ...
def f_no_suppress_1() -> int:
with DoesNotSuppress1():
return 3
noop() # E: Statement is unreachable
def f_no_suppress_2() -> int:
with DoesNotSuppress1():
return 3
noop() # E: Statement is unreachable
def f_suppress() -> int: # E: Missing return statement
with Suppresses():
return 3
noop()
[typing fixtures/typing-medium.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagContextAsyncManagersNoSuppress]
# flags: --warn-unreachable
from contextlib import asynccontextmanager
from typing import Optional, AsyncIterator, Literal, Any
class DoesNotSuppress1:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> Optional[bool]: ...
class DoesNotSuppress2:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> Literal[False]: ...
class DoesNotSuppress3:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> Any: ...
class DoesNotSuppress4:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> None: ...
@asynccontextmanager
async def simple() -> AsyncIterator[int]:
yield 3
def cond() -> bool: ...
def noop() -> None: ...
async def f_no_suppress_1a() -> int:
async with DoesNotSuppress1():
return 3
noop() # E: Statement is unreachable
async def f_no_suppress_1b() -> int:
async with DoesNotSuppress1():
if cond():
return 3
else:
return 3
noop() # E: Statement is unreachable
async def f_no_suppress_2() -> int:
async with DoesNotSuppress2():
return 3
noop() # E: Statement is unreachable
async def f_no_suppress_3() -> int:
async with DoesNotSuppress3():
return 3
noop() # E: Statement is unreachable
async def f_no_suppress_4() -> int:
async with DoesNotSuppress4():
return 3
noop() # E: Statement is unreachable
async def f_no_suppress_5() -> int:
async with simple():
return 3
noop() # E: Statement is unreachable
[typing fixtures/typing-full.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagContextAsyncManagersSuppressed]
# flags: --warn-unreachable
from contextlib import asynccontextmanager
from typing import Optional, AsyncIterator, Literal, Any
class DoesNotSuppress:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> Optional[bool]: ...
class Suppresses1:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> bool: ...
class Suppresses2:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> Literal[True]: ...
def cond() -> bool: ...
def noop() -> None: ...
async def f_suppress_1() -> int: # E: Missing return statement
async with Suppresses1():
return 3
noop()
async def f_suppress_2() -> int: # E: Missing return statement
async with Suppresses1():
if cond():
return 3
else:
return 3
noop()
async def f_suppress_3() -> int: # E: Missing return statement
async with Suppresses2():
return 3
noop()
async def f_mix() -> int: # E: Missing return statement
async with DoesNotSuppress(), Suppresses1(), DoesNotSuppress():
return 3
noop()
[typing fixtures/typing-full.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableFlagContextAsyncManagersAbnormal]
# flags: --warn-unreachable
from contextlib import asynccontextmanager
from typing import Optional, AsyncIterator, Literal, Any
class RegularManager:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> bool: ...
class AsyncManager:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> bool: ...
def noop() -> None: ...
async def f_bad_1() -> int:
async with RegularManager(): # E: "RegularManager" has no attribute "__aenter__"; maybe "__enter__"? \
# E: "RegularManager" has no attribute "__aexit__"; maybe "__exit__"?
return 3
noop() # E: Statement is unreachable
def f_bad_2() -> int:
with AsyncManager(): # E: "AsyncManager" has no attribute "__enter__"; maybe "__aenter__"? \
# E: "AsyncManager" has no attribute "__exit__"; maybe "__aexit__"?
return 3
noop() # E: Statement is unreachable
# TODO: We should consider reporting an error when the user tries using
# context manager with malformed signatures instead of silently continuing.
class RegularManagerMalformedSignature:
def __enter__(self) -> int: ...
def __exit__(self, exctype: object, excvalue: object, traceback: object) -> object: ...
class AsyncManagerMalformedSignature:
async def __aenter__(self) -> int: ...
async def __aexit__(self, exctype: object, excvalue: object, traceback: object) -> object: ...
def f_malformed_1() -> int:
with RegularManagerMalformedSignature():
return 3
noop() # E: Statement is unreachable
async def f_malformed_2() -> int:
async with AsyncManagerMalformedSignature():
return 3
noop() # E: Statement is unreachable
[typing fixtures/typing-full.pyi]
[builtins fixtures/tuple.pyi]
[case testUnreachableUntypedFunction]
# flags: --warn-unreachable
def test_untyped_fn(obj):
assert obj.prop is True
obj.update(prop=False)
obj.reload()
assert obj.prop is False
reveal_type(obj.prop)
def test_typed_fn(obj) -> None:
assert obj.prop is True
obj.update(prop=False)
obj.reload()
assert obj.prop is False
reveal_type(obj.prop) # E: Statement is unreachable
[case testUnreachableCheckedUntypedFunction]
# flags: --warn-unreachable --check-untyped-defs
def test_untyped_fn(obj):
assert obj.prop is True
obj.update(prop=False)
obj.reload()
assert obj.prop is False
reveal_type(obj.prop) # E: Statement is unreachable
[case testConditionalTypeVarException]
# every part of this test case was necessary to trigger the crash
import sys
from typing import TypeVar
T = TypeVar("T", int, str)
def f(t: T) -> None:
if sys.platform == "lol":
try:
pass
except BaseException as e:
pass
[builtins fixtures/dict.pyi]
[case testUnreachableLiteral]
# flags: --warn-unreachable
from typing import Literal
def nope() -> Literal[False]: ...
def f() -> None:
if nope():
x = 1 # E: Statement is unreachable
[builtins fixtures/dict.pyi]
[case testUnreachableLiteralFrom__bool__]
# flags: --warn-unreachable
from typing import Literal
class Truth:
def __bool__(self) -> Literal[True]: ...
class Lie:
def __bool__(self) -> Literal[False]: ...
class Maybe:
def __bool__(self) -> Literal[True | False]: ...
t = Truth()
if t:
x = 1
else:
x = 2 # E: Statement is unreachable
if Lie():
x = 3 # E: Statement is unreachable
if Maybe():
x = 4
def foo() -> bool: ...
y = Truth() or foo() # E: Right operand of "or" is never evaluated
z = Lie() and foo() # E: Right operand of "and" is never evaluated
[builtins fixtures/dict.pyi]
[case testUnreachableModuleBody1]
# flags: --warn-unreachable
from typing import NoReturn
def foo() -> NoReturn:
raise Exception("foo")
foo()
x = 1 # E: Statement is unreachable
[builtins fixtures/exception.pyi]
[case testUnreachableModuleBody2]
# flags: --warn-unreachable
raise Exception
x = 1 # E: Statement is unreachable
[builtins fixtures/exception.pyi]
[case testUnreachableNoReturnBinaryOps]
# flags: --warn-unreachable
from typing import NoReturn
a: NoReturn
a and 1 # E: Right operand of "and" is never evaluated
a or 1 # E: Right operand of "or" is never evaluated
a or a # E: Right operand of "or" is never evaluated
1 and a and 1 # E: Right operand of "and" is never evaluated
a and a # E: Right operand of "and" is never evaluated
[builtins fixtures/exception.pyi]
[case testUnreachableFlagWithTerminalBranchInDeferredNode]
# flags: --warn-unreachable
from typing import NoReturn
def assert_never(x: NoReturn) -> NoReturn: ...
def force_forward_ref() -> int:
return 4
def f(value: None) -> None:
x
if value is not None:
assert_never(value)
x = force_forward_ref()
[builtins fixtures/exception.pyi]
[case testSetitemNoReturn]
# flags: --warn-unreachable
from typing import NoReturn
class Foo:
def __setitem__(self, key: str, value: str) -> NoReturn:
raise Exception
Foo()['a'] = 'a'
x = 0 # E: Statement is unreachable
[builtins fixtures/exception.pyi]
[case TestNoImplicNoReturnFromError]
# flags: --warn-unreachable
from typing import TypeVar
T = TypeVar("T")
class Foo:
def __setitem__(self, key: str, value: str) -> T: # E: A function returning TypeVar should receive at least one argument containing the same TypeVar
raise Exception
def f() -> None:
Foo()['a'] = 'a'
x = 0 # This should not be reported as unreachable
[builtins fixtures/exception.pyi]
[case testIntentionallyEmptyGeneratorFunction]
# flags: --warn-unreachable
from typing import Generator
def f() -> Generator[None, None, None]:
return
yield
[case testIntentionallyEmptyGeneratorFunction_None]
# flags: --warn-unreachable
from typing import Generator
def f() -> Generator[None, None, None]:
return None
yield None
[case testLambdaNoReturn]
# flags: --warn-unreachable
from typing import Callable, NoReturn
def foo() -> NoReturn:
raise
f1 = lambda: foo()
x = 0 # not unreachable
f2: Callable[[], NoReturn] = lambda: foo()
x = 0 # not unreachable
[case testAttributeNoReturn]
# flags: --warn-unreachable
from typing import Optional, NoReturn, TypeVar
def foo() -> NoReturn:
raise
T = TypeVar("T")
def bar(x: Optional[list[T]] = None) -> T:
...
reveal_type(bar().attr) # N: Revealed type is "Never"
1 # not unreachable
reveal_type(foo().attr) # N: Revealed type is "Never"
1 # E: Statement is unreachable
[case testIgnoreReturningNotImplemented]
# flags: --warn-unreachable
class C:
def __add__(self, o: C) -> C:
if not isinstance(o, C):
return NotImplemented
return C()
def __sub__(self, o: C) -> C:
if isinstance(o, C):
return C()
return NotImplemented
def __mul__(self, o: C) -> C:
if isinstance(o, C):
return C()
else:
return NotImplemented
[builtins fixtures/isinstance.pyi]
[case testUnreachableStatementPrettyHighlighting]
# flags: --warn-unreachable --pretty
def x() -> None:
assert False
if 5:
pass
[out]
main:4: error: Statement is unreachable
if 5:
^~~~~
|