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 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248
|
-- Type checker test cases dealing with modules and imports.
-- Towards the end there are tests for PEP 420 (namespace packages, i.e. __init__.py-less packages).
[case testAccessImportedDefinitions0]
import m
import typing
m.f() # E: Missing positional argument "a" in call to "f"
m.f(object()) # E: Argument 1 to "f" has incompatible type "object"; expected "A"
m.x = object() # E: Incompatible types in assignment (expression has type "object", variable has type "A")
m.f(m.A())
m.x = m.A()
[file m.py]
class A: pass
def f(a: A) -> None: pass
x = A()
[case testAccessImportedDefinitions1]
import m
import typing
m.f(object()) # E: Argument 1 to "f" has incompatible type "object"; expected "A"
m.f(m.A())
[file m.py]
class A: pass
def f(a: A) -> None: pass
[case testAccessImportedDefinitions2]
from m import f, A
import typing
f(object()) # E: Argument 1 to "f" has incompatible type "object"; expected "A"
f(A())
[file m.py]
class A: pass
def f(a: A) -> None: pass
[case testImportedExceptionType]
import m
import typing
try:
pass
except m.Err:
pass
except m.Bad: # E: Exception type must be derived from BaseException (or be a tuple of exception classes)
pass
[file m.py]
class Err(BaseException): pass
class Bad: pass
[builtins fixtures/exception.pyi]
[case testImportedExceptionType2]
from m import Err, Bad
import typing
try:
pass
except Err:
pass
except Bad: # E: Exception type must be derived from BaseException (or be a tuple of exception classes)
pass
[file m.py]
class Err(BaseException): pass
class Bad: pass
[builtins fixtures/exception.pyi]
[case testImportWithinBlock]
import typing
if 1:
import m
m.a = m.b # E: Incompatible types in assignment (expression has type "B", variable has type "A")
m.a = m.a
m.f()
m.f(m.a) # E: Too many arguments for "f"
m.a = m.A()
m.a = m.B() # E: Incompatible types in assignment (expression has type "B", variable has type "A")
[file m.py]
class A: pass
class B: pass
a = A()
b = B()
def f() -> None: pass
[case testImportWithinFunction]
import typing
def f() -> None:
from m import a, b, f, A, B
if int():
a = b \
# E: Incompatible types in assignment (expression has type "B", variable has type "A")
a = a
f()
f(a) # E: Too many arguments for "f"
a = A()
a = B() \
# E: Incompatible types in assignment (expression has type "B", variable has type "A")
[file m.py]
class A: pass
class B: pass
a = A()
b = B()
def f() -> None: pass
[out]
[case testImportWithinMethod]
import typing
class C:
def f(self) -> None:
from m import *
if int():
a = b # E: Incompatible types in assignment (expression has type "B", variable has type "A")
a = a
f()
f(a) # E: Too many arguments for "f"
a = A()
a = B() # E: Incompatible types in assignment (expression has type "B", variable has type "A")
[file m.py]
class A: pass
class B: pass
a = A()
b = B()
def f() -> None: pass
[out]
[case testImportWithinClassBody]
import typing
class C:
import m
m.f()
m.f(C) # E: Too many arguments for "f"
[file m.py]
def f() -> None: pass
[out]
[case testImportWithinClassBody2]
import typing
class C:
from m import f # E: Unsupported class scoped import
f()
# ideally, the following should error:
f(C)
[file m.py]
def f() -> None: pass
[out]
[case testImportWithStub]
import _m
_m.f("hola")
[file _m.pyi]
def f(c:str) -> None: pass
[out]
[case testImportWithStubIncompatibleType]
import _m
_m.f("hola")
_m.f(12) # E: Argument 1 to "f" has incompatible type "int"; expected "str"
[file _m.py]
def f(c):
print(c)
[file _m.pyi]
def f(c:str) -> None: pass
[case testInvalidOperationsOnModules]
import m
import typing
class A: pass
m() # E: Module not callable
a = m # type: A # E: Incompatible types in assignment (expression has type Module, variable has type "A")
m + None # E: Unsupported left operand type for + (Module)
[file m.py]
[builtins fixtures/module.pyi]
[case testNameDefinedInDifferentModule]
import m, n
import typing
m.x # E: Module has no attribute "x"
[file m.py]
y = object()
[file n.py]
x = object()
[builtins fixtures/module.pyi]
[case testChainedAssignmentAndImports]
import m
i: int
s: str
if int():
i = m.x
if int():
i = m.y
if int():
s = m.x # E: Incompatible types in assignment (expression has type "int", variable has type "str")
if int():
s = m.y # E: Incompatible types in assignment (expression has type "int", variable has type "str")
[file m.py]
x = y = 1
[builtins fixtures/primitives.pyi]
[case testConditionalFunctionDefinitionAndImports]
import m
import typing
m.f(1)
m.f('x') # E: Argument 1 to "f" has incompatible type "str"; expected "int"
[file m.py]
x = object()
if x:
def f(x: int) -> None: pass
else:
def f(x: int) -> None: pass
[case testTypeCheckWithUnknownModule]
import nonexistent
None + ''
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
[case testTypeCheckWithUnknownModule2]
import m, nonexistent
None + ''
m.x = 1
m.x = ''
[file m.py]
x = 1
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
main:4: error: Incompatible types in assignment (expression has type "str", variable has type "int")
[case testTypeCheckWithUnknownModule3]
import nonexistent, m
None + ''
m.x = 1
m.x = ''
[file m.py]
x = 1
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
main:4: error: Incompatible types in assignment (expression has type "str", variable has type "int")
[case testTypeCheckWithUnknownModule4]
import nonexistent, another
None + ''
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:1: error: Cannot find implementation or library stub for module named "another"
main:2: error: Unsupported left operand type for + ("None")
[case testTypeCheckWithUnknownModule5]
import nonexistent as x
None + ''
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
[case testTypeCheckWithUnknownModuleUsingFromImport]
from nonexistent import x
None + ''
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
[case testTypeCheckWithUnknownModuleUsingImportStar]
from nonexistent import *
None + ''
[out]
main:1: error: Cannot find implementation or library stub for module named "nonexistent"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Unsupported left operand type for + ("None")
[case testAccessingUnknownModule]
import xyz
xyz.foo()
xyz()
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testAccessingUnknownModule2]
import xyz, bar
xyz.foo()
bar()
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:1: error: Cannot find implementation or library stub for module named "bar"
[case testAccessingUnknownModule3]
import xyz as z
xyz.foo()
z()
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Name "xyz" is not defined
[case testAccessingNameImportedFromUnknownModule]
from xyz import y, z
y.foo()
z()
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testAccessingNameImportedFromUnknownModule2]
from xyz import *
y
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Name "y" is not defined
[case testAccessingNameImportedFromUnknownModule3]
from xyz import y as z
y
z
[out]
main:1: error: Cannot find implementation or library stub for module named "xyz"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:2: error: Name "y" is not defined
[case testUnknownModuleRedefinition]
# Error messages differ with the new analyzer
import xab # E: Cannot find implementation or library stub for module named "xab" # N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
def xab(): pass # E: Name "xab" already defined (possibly by an import)
[case testAccessingUnknownModuleFromOtherModule]
import x
x.nonexistent.foo
x.z
[file x.py]
import nonexistent
[builtins fixtures/module.pyi]
[out]
tmp/x.py:1: error: Cannot find implementation or library stub for module named "nonexistent"
tmp/x.py:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:3: error: Module has no attribute "z"
[case testUnknownModuleImportedWithinFunction]
def f():
import foobar
def foobar(): pass
foobar('')
[out]
main:2: error: Cannot find implementation or library stub for module named "foobar"
main:2: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:4: error: Too many arguments for "foobar"
[case testUnknownModuleImportedWithinFunction2]
def f():
from foobar import x
def x(): pass
x('')
[out]
main:2: error: Cannot find implementation or library stub for module named "foobar"
main:2: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:4: error: Too many arguments for "x"
[case testRelativeImports]
import typing
import m.a
m.a.x = m.a.y # Error
[file m/__init__.py]
[file m/a.py]
import typing
from .b import A, B, x, y
z = x
if int():
z = y # Error
[file m/b.py]
import typing
class A: pass
class B: pass
x = A()
y = B()
[out]
tmp/m/a.py:5: error: Incompatible types in assignment (expression has type "B", variable has type "A")
main:3: error: Incompatible types in assignment (expression has type "B", variable has type "A")
[case testRelativeImports2]
import typing
import m.a
m.a.x = m.a.y # E: Incompatible types in assignment (expression has type "B", variable has type "A")
[file m/__init__.py]
[file m/a.py]
import typing
from .b import A, B, x, y
[file m/b.py]
import typing
class A: pass
class B: pass
x = A()
y = B()
[case testExportedValuesInImportAll]
import typing
from m import *
_ = a
_ = b
_ = c
_ = d
_ = e # E: Name "e" is not defined
_ = f
_ = _g # E: Name "_g" is not defined
[file m.py]
__all__ = ['a']
__all__ += ('b',)
__all__.append('c')
__all__.extend(('d', 'e', 'f'))
__all__.remove('e')
a = b = c = d = e = f = _g = 1
[builtins fixtures/module_all.pyi]
[case testAllMustBeSequenceStr]
import typing
__all__ = [1, 2, 3]
[builtins fixtures/module_all.pyi]
[out]
main:2: error: List item 0 has incompatible type "int"; expected "str"
main:2: error: List item 1 has incompatible type "int"; expected "str"
main:2: error: List item 2 has incompatible type "int"; expected "str"
[case testAllMustBeSequenceStr2]
import typing
__all__ = 1 # E: Type of __all__ must be "Sequence[str]", not "int"
reveal_type(__all__) # N: Revealed type is "builtins.int"
[builtins fixtures/module_all.pyi]
[case testAllMustBeSequenceStr3]
import typing
__all__ = set() # E: Need type annotation for "__all__" (hint: "__all__: set[<type>] = ...") \
# E: Type of __all__ must be "Sequence[str]", not "set[Any]"
reveal_type(__all__) # N: Revealed type is "builtins.set[Any]"
[builtins fixtures/set.pyi]
[case testModuleAllEmptyList]
__all__ = []
reveal_type(__all__) # N: Revealed type is "builtins.list[builtins.str]"
[builtins fixtures/module_all.pyi]
[case testDunderAllNotGlobal]
class A:
__all__ = 1
def foo() -> None:
__all__ = 1
[builtins fixtures/module_all.pyi]
[case testUnderscoreExportedValuesInImportAll]
import typing
from m import *
_ = a
_ = _b
_ = __c__
_ = ___d
_ = e
_ = f # E: Name "f" is not defined
_ = _g # E: Name "_g" is not defined
[file m.py]
__all__ = ['a']
__all__ += ('_b',)
__all__.append('__c__')
__all__.extend(('___d', 'e'))
a = _b = __c__ = ___d = e = f = _g = 1
[builtins fixtures/module_all.pyi]
[case testEllipsisInitializerInStubFileWithType]
import m
m.x = '' # E: Incompatible types in assignment (expression has type "str", variable has type "int")
[file m.pyi]
x = ... # type: int
[case testEllipsisInitializerInStubFileWithoutType]
import m
m.x = '' # E: Incompatible types in assignment (expression has type "str", variable has type "ellipsis")
[file m.pyi]
# Ellipsis is only special with a # type: comment (not sure though if this is great)
x = ...
[case testEllipsisInitializerInModule]
x = ... # type: int # E: Incompatible types in assignment (expression has type "ellipsis", variable has type "int")
[case testEllipsisDefaultArgValueInStub]
import m
m.f(1)
m.f('') # E: Argument 1 to "f" has incompatible type "str"; expected "int"
[file m.pyi]
def f(x: int = ...) -> None: pass
[case testEllipsisDefaultArgValueInStub2]
import m
def f1(x: int = ...) -> int: return 1
def f2(x: int = '') -> int: return 1
[file m.pyi]
def g1(x: int = ...) -> int: pass
def g2(x: int = '') -> int: pass
[out]
tmp/m.pyi:2: error: Incompatible default for argument "x" (default has type "str", argument has type "int")
main:2: error: Incompatible default for argument "x" (default has type "ellipsis", argument has type "int")
main:3: error: Incompatible default for argument "x" (default has type "str", argument has type "int")
[case testEllipsisDefaultArgValueInNonStub]
def ok_1(x: int = ...) -> None: pass
def ok_2(x: int = ...) -> None: ...
def ok_3(x: int = ...) -> None: raise NotImplementedError
def ok_4(x: int = ...) -> None: raise NotImplementedError()
def ok_5(x: int = ...) -> None:
"""Docstring here"""
pass
def bad_1(x: int = ...) -> None: 1 # E: Incompatible default for argument "x" (default has type "ellipsis", argument has type "int")
def bad_2(x: int = ...) -> None: # E: Incompatible default for argument "x" (default has type "ellipsis", argument has type "int")
"""Docstring here"""
ok_1()
def bad_3(x: int = ...) -> None: # E: Incompatible default for argument "x" (default has type "ellipsis", argument has type "int")
raise Exception("Some other exception")
[builtins fixtures/exception.pyi]
[out]
[case testEllipsisDefaultArgValueInNonStubsOverload]
from typing import overload, Union
Both = Union[int, str]
@overload
def foo(x: int, y: int = ...) -> int: ...
@overload
def foo(x: str, y: str = ...) -> str: ...
def foo(x: Both, y: Both = ...) -> Both: # E: Incompatible default for argument "y" (default has type "ellipsis", argument has type "Union[int, str]")
return x
@overload
def bar(x: int, y: int = ...) -> int: ...
@overload
def bar(x: str, y: str = ...) -> str: ...
def bar(x: Both, y: Both = ...) -> Both:
raise NotImplementedError
[builtins fixtures/exception.pyi]
[out]
[case testEllipsisDefaultArgValueInNonStubsMethods]
from typing import Generic, Protocol, TypeVar
from abc import abstractmethod
T = TypeVar('T')
class Wrap(Generic[T]): ...
class MyProtocol(Protocol):
def no_impl(self, x: Wrap[int] = ...) -> int: ...
def default_impl(self, x: Wrap[int] = ...) -> int: return 3 # E: Incompatible default for argument "x" (default has type "ellipsis", argument has type "Wrap[int]")
class MyAbstractClass:
@abstractmethod
def no_impl(self, x: Wrap[int] = ...) -> int: raise NotImplementedError
@abstractmethod
def default_impl(self, x: Wrap[int] = ...) -> int: return 3 # E: Incompatible default for argument "x" (default has type "ellipsis", argument has type "Wrap[int]")
[builtins fixtures/exception.pyi]
[out]
[case testStarImportOverlapping]
from m1 import *
from m2 import *
j = ''
[file m1.py]
x = 1
[file m2.py]
x = 1
[case testStarImportOverlappingMismatch]
from m1 import *
from m2 import * # E: Incompatible import of "x" (imported name has type "int", local name has type "str")
j = ''
[file m1.py]
x = ''
[file m2.py]
x = 1
[case testStarImportOverridingLocalImports]
from m1 import *
from m2 import *
x = '' # E: Incompatible types in assignment (expression has type "str", variable has type "int")
[file m1.py]
x = 1
[file m2.py]
x = 1
[case testAssignToFuncDefViaImport]
# Errors differ with the new analyzer. (Old analyzer gave error on the
# input, which is maybe better, but no error about f, which seems
# wrong)
from m import *
f = None # E: Incompatible types in assignment (expression has type "None", variable has type "Callable[[], Any]")
x = '' # E: Incompatible types in assignment (expression has type "str", variable has type "int")
[file m.py]
def f(): pass
x = 1+0
[out]
-- Conditional definitions and function redefinitions via module object
-- --------------------------------------------------------------------
[case testConditionalImportAndAssign]
# flags: --no-strict-optional
try:
from m import x
except:
x = None
try:
from m import x as y
except:
y = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "str")
[file m.py]
x = ''
[case testAssignAndConditionalImport]
x = ''
try:
from m import x
except:
pass
y = 1
try:
from m import x as y # E: Incompatible import of "y" (imported name has type "str", local name has type "int")
except:
pass
[file m.py]
x = ''
[case testAssignAndConditionalStarImport]
x = ''
y = 1
try:
from m import * # E: Incompatible import of "y" (imported name has type "str", local name has type "int")
except:
pass
[file m.py]
x = ''
y = ''
[case testRedefineImportedFunctionViaImport]
try:
from m import f, g
except:
def f(x): pass
def g(x): pass # E: All conditional function variants must have identical signatures \
# N: Original: \
# N: def g(x: Any, y: Any) -> Any \
# N: Redefinition: \
# N: def g(x: Any) -> Any
[file m.py]
def f(x): pass
def g(x, y): pass
[case testImportedVariableViaImport]
try:
from m import x
except:
from n import x # E: Incompatible import of "x" (imported name has type "str", local name has type "int")
[file m.py]
x = 1
[file n.py]
x = ''
[case testRedefineFunctionViaImport]
def f(x): pass
def g(x): pass
try:
from m import f, g # E: Incompatible import of "g" (imported name has type "Callable[[Any, Any], Any]", local name has type "Callable[[Any], Any]")
except:
pass
import m as f # E: Incompatible import of "f" (imported name has type "object", local name has type "Callable[[Any], Any]")
[file m.py]
def f(x): pass
def g(x, y): pass
[case testRedefineTypeViaImport]
from typing import Type
import mod
X: Type[mod.A]
Y: Type[mod.B]
from mod import B as X
from mod import A as Y # E: Incompatible import of "Y" (imported name has type "type[A]", local name has type "type[B]")
import mod as X # E: Incompatible import of "X" (imported name has type "object", local name has type "type[A]")
[file mod.py]
class A: ...
class B(A): ...
[case testImportVariableAndAssignNone]
# flags: --no-strict-optional
try:
from m import x
except:
x = None
[file m.py]
x = 1
[case testImportFunctionAndAssignNone]
# flags: --no-strict-optional
try:
from m import f
except:
f = None
[file m.py]
def f(): pass
[case testImportFunctionAndAssignFunction]
def g(x): pass
try:
from m import f
except:
f = g
[file m.py]
def f(x): pass
[case testImportFunctionAndAssignIncompatible]
try:
from m import f
except:
f = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "Callable[[], Any]")
[file m.py]
def f(): pass
[case testAssignToFuncDefViaGlobalDecl2]
# flags: --no-strict-optional
import typing
from m import f
def g() -> None:
global f
f = None
if int():
f = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "Callable[[], Any]")
[file m.py]
def f(): pass
[out]
[case testAssignToFuncDefViaNestedModules]
# flags: --no-strict-optional
import m.n
m.n.f = None
m.n.f = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "Callable[[], Any]")
[file m/__init__.py]
[file m/n.py]
def f(): pass
[out]
[case testAssignToFuncDefViaModule]
# flags: --no-strict-optional
import m
m.f = None
m.f = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "Callable[[], Any]")
[file m.py]
def f(): pass
[out]
[case testConditionalImportAndAssignNoneToModule]
# flags: --no-strict-optional
if object():
import m
else:
m = None
m.f(1) # E: Argument 1 to "f" has incompatible type "int"; expected "str"
[file m.py]
def f(x: str) -> None: pass
[builtins fixtures/module.pyi]
[out]
[case testConditionalImportAndAssignInvalidToModule]
if object():
import m
else:
m = 1 # E: Incompatible types in assignment (expression has type "int", variable has type Module)
[file m.py]
[builtins fixtures/module.pyi]
[out]
[case testImportAndAssignToModule]
# flags: --no-strict-optional
import m
m = None
m.f(1) # E: Argument 1 to "f" has incompatible type "int"; expected "str"
[file m.py]
def f(x: str) -> None: pass
[builtins fixtures/module.pyi]
[out]
-- Test cases that simulate 'mypy -m modname'
--
-- The module name to import is encoded in a comment.
[case testTypeCheckNamedModule]
# cmd: mypy -m m.a
[file m/__init__.py]
None + 1
[file m/a.py]
[out]
tmp/m/__init__.py:1: error: Unsupported left operand type for + ("None")
[case testTypeCheckNamedModule2]
# cmd: mypy -m m.a
[file m/__init__.py]
[file m/a.py]
None + 1
[out]
tmp/m/a.py:1: error: Unsupported left operand type for + ("None")
[case testTypeCheckNamedModule3]
# cmd: mypy -m m
[file m/__init__.py]
None + 1
[file m/a.py]
[out]
tmp/m/__init__.py:1: error: Unsupported left operand type for + ("None")
[case testTypeCheckNamedModule4]
# cmd: mypy -m m
[file m/__init__.py]
[file m/a.py]
None + 1 # Not analyzed.
[out]
[case testTypeCheckNamedModule5]
# cmd: mypy -m m
None + '' # Not analyzed.
[file m.py]
None + 1
[out]
tmp/m.py:1: error: Unsupported left operand type for + ("None")
[case testTypeCheckNamedModuleWithImportCycle]
# cmd: mypy -m m.a
None + 1 # Does not generate error, as this file won't be analyzed.
[file m/__init__.py]
import m.a
[file m/a.py]
[out]
[case testCheckDecoratedFuncAsAnnotWithImportCycle]
import a
[file a.py]
from typing import TypeVar
import b
T = TypeVar('T')
def idf(x: T) -> T: return x
@idf
def Session() -> None: pass
[file b.py]
MYPY = False
if MYPY:
from a import Session
def f(self, session: Session) -> None: # E: Function "a.Session" is not valid as a type \
# N: Perhaps you need "Callable[...]" or a callback protocol?
pass
[builtins fixtures/bool.pyi]
-- Checks dealing with submodules and different kinds of imports
-- -------------------------------------------------------------
[case testSubmoduleRegularImportAddsAllParents]
import a.b.c
reveal_type(a.value) # N: Revealed type is "builtins.int"
reveal_type(a.b.value) # N: Revealed type is "builtins.str"
reveal_type(a.b.c.value) # N: Revealed type is "builtins.float"
b.value # E: Name "b" is not defined
c.value # E: Name "c" is not defined
[file a/__init__.py]
value = 3
[file a/b/__init__.py]
value = "a"
[file a/b/c.py]
value = 3.2
[out]
[case testSubmoduleImportAsDoesNotAddParents]
import a.b.c as foo
reveal_type(foo.value) # N: Revealed type is "builtins.float"
a.value # E: Name "a" is not defined
b.value # E: Name "b" is not defined
c.value # E: Name "c" is not defined
[file a/__init__.py]
value = 3
[file a/b/__init__.py]
value = "a"
[file a/b/c.py]
value = 3.2
[out]
[case testSubmoduleImportFromDoesNotAddParents]
from a import b
reveal_type(b.value) # N: Revealed type is "builtins.str"
b.c.value # E: Module has no attribute "c"
a.value # E: Name "a" is not defined
[file a/__init__.py]
value = 3
[file a/b/__init__.py]
value = "a"
[file a/b/c.py]
value = 3.2
[builtins fixtures/module.pyi]
[out]
[case testSubmoduleImportFromDoesNotAddParents2]
from a.b import c
reveal_type(c.value) # N: Revealed type is "builtins.float"
a.value # E: Name "a" is not defined
b.value # E: Name "b" is not defined
[file a/__init__.py]
value = 3
[file a/b/__init__.py]
value = "a"
[file a/b/c.py]
value = 3.2
[out]
[case testSubmoduleRegularImportNotDirectlyAddedToParent]
import a.b.c
def accept_float(x: float) -> None: pass
accept_float(a.b.c.value)
[file a/__init__.py]
value = 3
b.value
a.b.value
[file a/b/__init__.py]
value = "a"
c.value
a.b.c.value
[file a/b/c.py]
value = 3.2
[out]
tmp/a/__init__.py:2: error: Name "b" is not defined
tmp/a/__init__.py:3: error: Name "a" is not defined
tmp/a/b/__init__.py:2: error: Name "c" is not defined
tmp/a/b/__init__.py:3: error: Name "a" is not defined
[case testSubmoduleMixingLocalAndQualifiedNames]
from a.b import MyClass
val1: a.b.MyClass # E: Name "a" is not defined
val2: MyClass
[file a/__init__.py]
[file a/b.py]
class MyClass: pass
[out]
[case testSubmoduleMixingImportFrom]
import parent.child
[file parent/__init__.py]
[file parent/common.py]
class SomeClass: pass
[file parent/child.py]
from parent.common import SomeClass
from parent import common
foo = parent.common.SomeClass()
[builtins fixtures/module.pyi]
[out]
tmp/parent/child.py:3: error: Name "parent" is not defined
[case testSubmoduleMixingImportFromAndImport]
import parent.child
[file parent/__init__.py]
[file parent/common.py]
class SomeClass: pass
[file parent/unrelated.py]
class ShouldNotLoad: pass
[file parent/child.py]
from parent.common import SomeClass
import parent
# Note, since this might be unintuitive -- when `parent.common` is loaded in any way,
# shape, or form, it's added to `parent`'s namespace, which is why the below line
# succeeds.
foo = parent.common.SomeClass()
reveal_type(foo)
bar = parent.unrelated.ShouldNotLoad()
[builtins fixtures/module.pyi]
[out]
tmp/parent/child.py:8: note: Revealed type is "parent.common.SomeClass"
tmp/parent/child.py:9: error: Module has no attribute "unrelated"
[case testSubmoduleMixingImportFromAndImport2]
import parent.child
[file parent/__init__.py]
[file parent/common.py]
class SomeClass: pass
[file parent/child.py]
from parent import common
import parent
foo = parent.common.SomeClass()
reveal_type(foo)
[builtins fixtures/module.pyi]
[out]
tmp/parent/child.py:4: note: Revealed type is "parent.common.SomeClass"
-- Tests repeated imports
[case testIdenticalImportFromTwice]
from a import x, y, z
from b import x, y, z
[file a.py]
from common import x, y, z
[file b.py]
from common import x, y, z
[file common.py]
x = 3
def y() -> int: return 3
class z: pass
[out]
[case testIdenticalImportStarTwice]
from a import *
from b import *
[file a.py]
from common import x, y, z
[file b.py]
from common import x, y, z
[file common.py]
x = 3
def y() -> int: return 3
class z: pass
[out]
[case testDifferentImportSameNameTwice]
from a import x, y, z
from b import x, y, z
[file a.py]
x = 3
def y() -> int: return 1
class z: pass
[file b.py]
x = "foo"
def y() -> str: return "foo"
class z: pass
[out]
main:2: error: Incompatible import of "x" (imported name has type "str", local name has type "int")
main:2: error: Incompatible import of "y" (imported name has type "Callable[[], str]", local name has type "Callable[[], int]")
main:2: error: Incompatible import of "z" (imported name has type "type[b.z]", local name has type "type[a.z]")
-- Misc
[case testInheritFromBadImport]
# cmd: mypy -m bar
[file foo.py]
pass
[file bar.py]
from foo import B
class C(B):
pass
[out]
tmp/bar.py:1: error: Module "foo" has no attribute "B"
[case testImportSuppressedWhileAlmostSilent]
# cmd: mypy -m main
# flags: --follow-imports=error
[file main.py]
import mod
[file mod.py]
[builtins fixtures/module.pyi]
[out]
tmp/main.py:1: error: Import of "mod" ignored
tmp/main.py:1: note: (Using --follow-imports=error, module not passed on command line)
[case testAncestorSuppressedWhileAlmostSilent]
# cmd: mypy -m foo.bar
# flags: --follow-imports=error
[file foo/bar.py]
[file foo/__init__.py]
[builtins fixtures/module.pyi]
[out]
tmp/foo/bar.py: error: Ancestor package "foo" ignored
tmp/foo/bar.py: note: (Using --follow-imports=error, submodule passed on command line)
[case testStubImportNonStubWhileSilent]
# cmd: mypy -m main
# flags: --follow-imports=skip
[file main.py]
from stub import x, z # Followed
from other import y # Not followed
x + '' # No error here
y + '' # No error here
z + '' # Error here
[file stub.pyi]
from non_stub import x as x # this import is not followed
z = 42
[file non_stub.py]
x = 42
x + '' # no error because file is not analyzed
[file other.py]
y = 42
[builtins fixtures/module.pyi]
[out]
tmp/main.py:5: error: Unsupported left operand type for + ("int")
[case testSilentSubmoduleImport]
# cmd: mypy -m foo
# flags: --follow-imports=skip
[file foo/__init__.py]
from foo import bar
[file foo/bar.py]
pass
[case testImportReExportFromChildrenInCycle1]
# cmd: mypy -m project.root project.study.a project.neighbor
[file project/__init__.py]
from project.study import CustomType
x = 10
[file project/root.py]
[file project/study/__init__.py]
from project.study.a import CustomType
[file project/study/a.py]
from project import root
# TODO (#4498): This test is basically testing the `all_are_submodules` logic
# in build, which skips generating a dependency to a module if
# everything in it is a submodule. But that is still all just a
# workaround for bugs in cycle handling. If we uncomment the next
# line, we'll still break:
# from project import x
CustomType = str
[file project/neighbor/__init__.py]
from project.study import CustomType
def m(arg: CustomType) -> str:
return 'test'
[case testImportReExportFromChildrenInCycle2]
# cmd: mypy -m project project.b project.ba project.c
# See comments in above test about this being a workaround.
[file foo.py]
def get_foo() -> int: return 12
[file project/ba.py]
from . import b
b.FOO
[file project/b.py]
import foo
from . import c
FOO = foo.get_foo()
[file project/c.py]
[file project/__init__.py]
from . import ba
[case testSuperclassInImportCycle]
import a
import d
a.A().f(d.D())
[file a.py]
if 0:
import d
class B: pass
class C(B): pass
class A:
def f(self, x: B) -> None: pass
[file d.py]
import a
class D(a.C): pass
[case testSuperclassInImportCycleReversedImports]
import d
import a
a.A().f(d.D())
[file a.py]
if 0:
import d
class B: pass
class C(B): pass
class A:
def f(self, x: B) -> None: pass
[file d.py]
import a
class D(a.C): pass
[case testPreferPackageOverFile]
import a
[file a.py]
/ # intentional syntax error -- this file shouldn't be parsed
[file a/__init__.py]
pass
[out]
[case testPreferPackageOverFile2]
from a import x
[file a.py]
/ # intentional syntax error -- this file shouldn't be parsed
[file a/__init__.py]
x = 0
[out]
[case testImportInClass]
class C:
import foo
reveal_type(C.foo.bar) # N: Revealed type is "builtins.int"
[file foo.py]
bar = 0
[builtins fixtures/module.pyi]
[out]
[case testIfFalseImport]
if False:
import a
def f(x: 'a.A') -> int:
return x.f()
[file a.py]
class A:
def f(self) -> int:
return 0
[builtins fixtures/bool.pyi]
-- Test stability under import cycles
-- ----------------------------------
-- The first two tests are identical except one main has 'import x'
-- and the other 'import y'. Previously (before build.order_ascc()
-- was added) one of these would fail because the imports were
-- processed in the (reverse) order in which the files were
-- encountered.
[case testImportCycleStability1]
import x
[file x.py]
def f() -> str: return ''
class Base:
attr = f()
def foo():
import y
[file y.py]
import x
class Sub(x.Base):
attr = x.Base.attr
[out]
[case testImportCycleStability2]
import y
[file x.py]
def f() -> str: return ''
class Base:
attr = f()
def foo():
import y
[file y.py]
import x
class Sub(x.Base):
attr = x.Base.attr
[out]
-- This case isn't fixed by order_ascc(), but is fixed by the
-- lightweight type inference added to semanal.py
-- (analyze_simple_literal_type()).
[case testImportCycleStability3]
import y
[file x.py]
class Base:
pass
def foo() -> int:
import y
reveal_type(y.Sub.attr)
return y.Sub.attr
[file y.py]
import x
class Sub(x.Base):
attr = 0
[out]
tmp/x.py:5: note: Revealed type is "builtins.int"
-- This case has a symmetrical cycle, so it doesn't matter in what
-- order the files are processed. It depends on the lightweight type
-- interference.
[case testImportCycleStability4]
import x
[file x.py]
import y
class C:
attr = ''
def foo() -> int:
return y.D.attr
[file y.py]
import x
class D:
attr = 0
def bar() -> str:
return x.C.attr
-- These cases test all supported literal types.
[case testImportCycleStability5]
import y
[file x.py]
class Base:
pass
def foo() -> None:
import y
i = y.Sub.iattr # type: int
f = y.Sub.fattr # type: float
s = y.Sub.sattr # type: str
b = y.Sub.battr # type: bytes
[file y.py]
import x
class Sub(x.Base):
iattr = 0
fattr = 0.0
sattr = ''
battr = b''
[out]
-- This case tests module-level variables.
[case testImportCycleStability7]
import x
[file x.py]
def foo() -> int:
import y
reveal_type(y.value)
return y.value
[file y.py]
import x
value = 12
[out]
tmp/x.py:3: note: Revealed type is "builtins.int"
-- This is not really cycle-related but still about the lightweight
-- type checker.
[case testImportCycleStability8]
x = 1 # type: str
reveal_type(x)
[out]
main:1: error: Incompatible types in assignment (expression has type "int", variable has type "str")
main:2: note: Revealed type is "builtins.str"
-- Tests for cross-module second_pass checking.
[case testSymmetricImportCycle1]
import a
[file a.py]
import b
def f() -> int:
return b.x
y = 0 + int()
[file b.py]
import a
def g() -> int:
reveal_type(a.y)
return a.y
x = 1 + int()
[out]
tmp/b.py:3: note: Revealed type is "builtins.int"
[case testSymmetricImportCycle2]
import b
[file a.py]
import b
def f() -> int:
reveal_type(b.x)
return b.x
y = 0 + int()
[file b.py]
import a
def g() -> int:
return a.y
x = 1 + int()
[out]
tmp/a.py:3: note: Revealed type is "builtins.int"
[case testThreePassesRequired]
import b
[file a.py]
import b
class C:
def f1(self) -> None:
reveal_type(self.x2)
def f2(self) -> None:
self.x2 = b.b
[file b.py]
import a
b = 1 + int()
[out]
tmp/a.py:4: note: Revealed type is "builtins.int"
[case testErrorInPassTwo1]
import b
[file a.py]
import b
def f() -> None:
a = b.x + 1
a + ''
[file b.py]
import a
x = 1 + int()
[out]
tmp/a.py:4: error: Unsupported operand types for + ("int" and "str")
[case testErrorInPassTwo2]
import a
[file a.py]
import b
def f() -> None:
a = b.x + 1
a + ''
[file b.py]
import a
x = 1 + int()
[out]
tmp/a.py:4: error: Unsupported operand types for + ("int" and "str")
[case testDeferredDecorator]
import a
[file a.py]
import b
def g() -> None:
f('')
@b.deco
def f(a: str) -> int: pass
reveal_type(f)
x = 1 + int()
[file b.py]
from typing import Callable, TypeVar
import a
T = TypeVar('T')
def deco(f: Callable[[T], int]) -> Callable[[T], int]:
a.x
return f
[out]
tmp/a.py:6: note: Revealed type is "def (builtins.str) -> builtins.int"
[case testDeferredClassContext]
class A:
def f(self) -> str: return 'foo'
class B(A):
def f(self) -> str: return self.x
def initialize(self) -> None: self.x = 'bar'
[case testDeferredClassContextUnannotated]
class A:
def f(self) -> str: return 'foo'
class B(A):
def f(self) -> str: return self.x
def initialize(self): self.x = 'bar'
-- Scripts and __main__
[case testScriptsAreModules]
# flags: --scripts-are-modules
[file a]
pass
[file b]
pass
-- Misc
[case testScriptsAreNotModules]
# cmd: mypy a b
[file a]
pass
[file b]
pass
[out]
[case testTypeCheckPrio]
# cmd: mypy -m part1 part2 part3 part4
[file part1.py]
from part3 import Thing
class FirstThing: pass
[file part2.py]
from part4 import part4_thing as Thing
[file part3.py]
from part2 import Thing
reveal_type(Thing)
[file part4.py]
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from part1 import FirstThing
def part4_thing(a: int) -> str: pass
[builtins fixtures/bool.pyi]
[typing fixtures/typing-medium.pyi]
[out]
tmp/part3.py:2: note: Revealed type is "def (a: builtins.int) -> builtins.str"
[case testImportStarAliasAnyList]
import bar
[file bar.py]
from foo import *
def bar(y: AnyAlias) -> None: pass
l: ListAlias[int]
reveal_type(l)
[file foo.py]
from typing import Any, List
AnyAlias = Any
ListAlias = List
[builtins fixtures/list.pyi]
[out]
tmp/bar.py:5: note: Revealed type is "builtins.list[builtins.int]"
[case testImportStarAliasSimpleGeneric]
from ex2a import *
def do_something(dic: Row) -> None:
pass
def do_another() -> Row:
return {}
do_something({'good': 'bad'}) # E: Dict entry 0 has incompatible type "str": "str"; expected "str": "int"
reveal_type(do_another()) # N: Revealed type is "builtins.dict[builtins.str, builtins.int]"
[file ex2a.py]
from typing import Dict
Row = Dict[str, int]
[builtins fixtures/dict.pyi]
[out]
[case testImportStarAliasGeneric]
from y import *
notes: G[X]
another = G[X]()
second = XT[str]()
last = XT[G]()
reveal_type(notes) # N: Revealed type is "y.G[y.G[builtins.int]]"
reveal_type(another) # N: Revealed type is "y.G[y.G[builtins.int]]"
reveal_type(second) # N: Revealed type is "y.G[builtins.str]"
reveal_type(last) # N: Revealed type is "y.G[y.G[Any]]"
[file y.py]
from typing import Generic, TypeVar
T = TypeVar('T')
class G(Generic[T]):
pass
X = G[int]
XT = G[T]
[out]
[case testImportStarAliasCallable]
from foo import *
from typing import Any
def bar(x: Any, y: AnyCallable) -> Any:
return 'foo'
cb: AnyCallable
reveal_type(cb) # N: Revealed type is "def (*Any, **Any) -> Any"
[file foo.py]
from typing import Callable, Any
AnyCallable = Callable[..., Any]
[out]
[case testRevealType]
import types
def f() -> types.ModuleType:
return types
reveal_type(f()) # N: Revealed type is "types.ModuleType"
reveal_type(types) # N: Revealed type is "types.ModuleType"
[builtins fixtures/module.pyi]
[typing fixtures/typing-full.pyi]
[case testClassImportAccessedInMethod]
class C:
import m
def foo(self) -> None:
x = self.m.a
reveal_type(x) # N: Revealed type is "builtins.str"
# ensure we distinguish self from other variables
y = 'hello'
z = y.m.a # E: "str" has no attribute "m"
@classmethod
def cmethod(cls) -> None:
y = cls.m.a
reveal_type(y) # N: Revealed type is "builtins.str"
@staticmethod
def smethod(foo: int) -> None:
# we aren't confused by first arg of a staticmethod
y = foo.m.a # E: "int" has no attribute "m"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testModuleAlias]
import m
m2 = m
reveal_type(m2.a) # N: Revealed type is "builtins.str"
m2.b # E: Module has no attribute "b"
m2.c = 'bar' # E: Module has no attribute "c"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testClassModuleAlias]
import m
class C:
x = m
def foo(self) -> None:
reveal_type(self.x.a) # N: Revealed type is "builtins.str"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testLocalModuleAlias]
import m
def foo() -> None:
x = m
reveal_type(x.a) # N: Revealed type is "builtins.str"
class C:
def foo(self) -> None:
x = m
reveal_type(x.a) # N: Revealed type is "builtins.str"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testChainedModuleAlias]
import m
m3 = m2 = m
m4 = m3
m5 = m4
reveal_type(m2.a) # N: Revealed type is "builtins.str"
reveal_type(m3.a) # N: Revealed type is "builtins.str"
reveal_type(m4.a) # N: Revealed type is "builtins.str"
reveal_type(m5.a) # N: Revealed type is "builtins.str"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testMultiModuleAlias]
import m, n
m2, n2, (m3, n3) = m, n, [m, n]
reveal_type(m2.a) # N: Revealed type is "builtins.str"
reveal_type(n2.b) # N: Revealed type is "builtins.str"
reveal_type(m3.a) # N: Revealed type is "builtins.str"
reveal_type(n3.b) # N: Revealed type is "builtins.str"
x, y = m # E: Module object is not iterable
x, y, z = m, n # E: Need more than 2 values to unpack (3 expected)
x, y = m, m, m # E: Too many values to unpack (2 expected, 3 provided)
x, (y, z) = m, n # E: Module object is not iterable
x, (y, z) = m, (n, n, n) # E: Too many values to unpack (2 expected, 3 provided)
[file m.py]
a = 'foo'
[file n.py]
b = 'bar'
[builtins fixtures/module.pyi]
[case testModuleAliasWithExplicitAnnotation]
from typing import Any
import types
import m
mod_mod: types.ModuleType = m
mod_mod2: types.ModuleType
mod_mod2 = m
mod_mod3 = m # type: types.ModuleType
mod_any: Any = m
mod_int: int = m # E: Incompatible types in assignment (expression has type Module, variable has type "int")
reveal_type(mod_mod) # N: Revealed type is "types.ModuleType"
reveal_type(mod_mod.a) # N: Revealed type is "Any"
reveal_type(mod_mod2) # N: Revealed type is "types.ModuleType"
reveal_type(mod_mod2.a) # N: Revealed type is "Any"
reveal_type(mod_mod3) # N: Revealed type is "types.ModuleType"
reveal_type(mod_mod3.a) # N: Revealed type is "Any"
reveal_type(mod_any) # N: Revealed type is "Any"
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testModuleAliasPassedToFunction]
import types
import m
def takes_module(x: types.ModuleType):
reveal_type(x.__file__) # N: Revealed type is "builtins.str"
n = m
takes_module(m)
takes_module(n)
[file m.py]
a = 'foo'
[builtins fixtures/module.pyi]
[case testModuleAliasRepeated]
import m, n
if bool():
x = m
else:
x = 3 # E: Incompatible types in assignment (expression has type "int", variable has type Module)
if bool():
y = 3
else:
y = m # E: Incompatible types in assignment (expression has type Module, variable has type "int")
if bool():
z = m
else:
z = n # E: Cannot assign multiple modules to name "z" without explicit "types.ModuleType" annotation
[file m.py]
a = 'foo'
[file n.py]
a = 3
[builtins fixtures/module.pyi]
[case testModuleAliasRepeatedWithAnnotation]
import types
import m, n
x: types.ModuleType
if bool():
x = m
else:
x = n
reveal_type(x.nope) # N: Revealed type is "Any"
reveal_type(x.__file__) # N: Revealed type is "builtins.str"
[file m.py]
a = 'foo'
[file n.py]
a = 3
[builtins fixtures/module.pyi]
[case testModuleAliasRepeatedComplex]
import m, n, o
x = m
if int():
x = n # E: Cannot assign multiple modules to name "x" without explicit "types.ModuleType" annotation
if int():
x = o # E: Cannot assign multiple modules to name "x" without explicit "types.ModuleType" annotation
y = o
if int():
y, z = m, n # E: Cannot assign multiple modules to name "y" without explicit "types.ModuleType" annotation
xx = m
if int():
xx = m
reveal_type(xx.a) # N: Revealed type is "builtins.str"
[file m.py]
a = 'foo'
[file n.py]
a = 3
[file o.py]
a = 'bar'
[builtins fixtures/module.pyi]
[case testModuleAliasToOtherModule]
import m, n
m = n # E: Cannot assign multiple modules to name "m" without explicit "types.ModuleType" annotation
[file m.py]
[file n.py]
[builtins fixtures/module.pyi]
[case testNoReExportFromStubs]
from stub import Iterable # E: Module "stub" does not explicitly export attribute "Iterable"
from stub import D # E: Module "stub" does not explicitly export attribute "D"
from stub import C
from stub import foo
from stub import bar # E: Module "stub" does not explicitly export attribute "bar"
c = C()
reveal_type(c.x) # N: Revealed type is "builtins.int"
it: Iterable[int]
reveal_type(it) # N: Revealed type is "typing.Iterable[builtins.int]"
[file stub.pyi]
from typing import Iterable
from substub import C as C
from substub import C as D
from package import foo as foo
import package.bar as bar
def fun(x: Iterable[str]) -> Iterable[int]: pass
[file substub.pyi]
class C:
x: int
[file package/foo.pyi]
[file package/bar.pyi]
[builtins fixtures/module.pyi]
[case testNoReExportFromStubsMemberType]
import stub
c = stub.C()
reveal_type(c.x) # N: Revealed type is "builtins.int"
it: stub.Iterable[int] # E: Name "stub.Iterable" is not defined
reveal_type(it) # N: Revealed type is "Any"
[file stub.pyi]
from typing import Iterable
from substub import C as C
def fun(x: Iterable[str]) -> Iterable[int]: pass
[file substub.pyi]
class C:
x: int
[builtins fixtures/module.pyi]
[case testNoReExportFromStubsMemberVar]
import stub
reveal_type(stub.y) # N: Revealed type is "builtins.int"
reveal_type(stub.z) # E: Module "stub" does not explicitly export attribute "z" \
# N: Revealed type is "builtins.int"
[file stub.pyi]
from substub import y as y
from substub import z
[file substub.pyi]
y = 42
z: int
[builtins fixtures/module.pyi]
[case testReExportChildStubs]
import mod
from mod import submod
reveal_type(mod.x) # N: Revealed type is "mod.submod.C"
y = submod.C()
reveal_type(y.a) # N: Revealed type is "builtins.str"
[file mod/__init__.pyi]
from . import submod
x: submod.C
[file mod/submod.pyi]
class C:
a: str
[builtins fixtures/module.pyi]
[case testReExportChildStubs2]
import mod.submod
y = mod.submod.C()
reveal_type(y.a) # N: Revealed type is "builtins.str"
[file mod/__init__.pyi]
from . import submod
x: submod.C
[file mod/submod.pyi]
class C:
a: str
[builtins fixtures/module.pyi]
[case testReExportChildStubs3]
from util import mod
reveal_type(mod) # N: Revealed type is "def () -> package.mod.mod"
from util import internal_detail # E: Module "util" does not explicitly export attribute "internal_detail"
[file package/__init__.pyi]
from .mod import mod as mod
[file package/mod.pyi]
class mod: ...
[file util.pyi]
from package import mod as mod
# stubs require explicit re-export
from package import mod as internal_detail
[builtins fixtures/module.pyi]
[case testNoReExportUnrelatedModule]
from mod2 import unrelated # E: Module "mod2" does not explicitly export attribute "unrelated"
[file mod1/__init__.pyi]
[file mod1/unrelated.pyi]
x: int
[file mod2.pyi]
from mod1 import unrelated
[builtins fixtures/module.pyi]
[case testNoReExportUnrelatedSiblingPrefix]
from pkg.unrel import unrelated # E: Module "pkg.unrel" does not explicitly export attribute "unrelated"
[file pkg/__init__.pyi]
[file pkg/unrelated.pyi]
x: int
[file pkg/unrel.pyi]
from pkg import unrelated
[builtins fixtures/module.pyi]
[case testNoReExportChildStubs]
import mod
from mod import C, D # E: Module "mod" does not explicitly export attribute "C"
reveal_type(mod.x) # N: Revealed type is "mod.submod.C"
mod.C # E: Module "mod" does not explicitly export attribute "C"
y = mod.D()
reveal_type(y.a) # N: Revealed type is "builtins.str"
[file mod/__init__.pyi]
from .submod import C, D as D
x: C
[file mod/submod.pyi]
class C: pass
class D:
a: str
[builtins fixtures/module.pyi]
[case testNoReExportNestedStub]
from stub import substub # E: Module "stub" does not explicitly export attribute "substub"
[file stub.pyi]
import substub
[file substub.pyi]
x = 42
[file mod/submod.pyi]
[case testModuleAliasToQualifiedImport]
import package.module
alias = package.module
reveal_type(alias.whatever('/')) # N: Revealed type is "builtins.str"
[file package/__init__.py]
[file package/module.py]
from typing import TypeVar
T = TypeVar('T')
def whatever(x: T) -> T: pass
[builtins fixtures/module.pyi]
[typing fixtures/typing-full.pyi]
[case testModuleAliasToQualifiedImport2]
import mod
import othermod
alias = mod.submod
reveal_type(alias.whatever('/')) # N: Revealed type is "builtins.str"
if int():
alias = othermod # E: Cannot assign multiple modules to name "alias" without explicit "types.ModuleType" annotation
[file mod.py]
import submod
[file submod.py]
from typing import TypeVar
T = TypeVar('T')
def whatever(x: T) -> T: pass
[file othermod.py]
[builtins fixtures/module.pyi]
[typing fixtures/typing-full.pyi]
[case testModuleLevelGetattr]
import has_getattr
reveal_type(has_getattr.any_attribute) # N: Revealed type is "Any"
[file has_getattr.pyi]
from typing import Any
def __getattr__(name: str) -> Any: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrReturnType]
import has_getattr
reveal_type(has_getattr.any_attribute) # N: Revealed type is "builtins.str"
[file has_getattr.pyi]
def __getattr__(name: str) -> str: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrInvalidSignature]
import has_getattr
reveal_type(has_getattr.any_attribute)
[file has_getattr.pyi]
def __getattr__(x: int, y: str) -> str: ...
[out]
tmp/has_getattr.pyi:1: error: Invalid signature "Callable[[int, str], str]" for "__getattr__"
main:3: note: Revealed type is "builtins.str"
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrNotCallable]
import has_getattr
reveal_type(has_getattr.any_attribute)
[file has_getattr.pyi]
__getattr__ = 3
[out]
tmp/has_getattr.pyi:1: error: Invalid signature "int" for "__getattr__"
main:3: note: Revealed type is "Any"
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrUntyped]
import has_getattr
reveal_type(has_getattr.any_attribute) # N: Revealed type is "Any"
[file has_getattr.pyi]
def __getattr__(name): ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrNotStub]
import has_getattr
reveal_type(has_getattr.any_attribute) # N: Revealed type is "builtins.str"
[file has_getattr.py]
def __getattr__(name) -> str: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattribute]
def __getattribute__(): ... # E: __getattribute__ is not valid at the module level
[case testModuleLevelGetattrImportFrom]
from has_attr import name
reveal_type(name) # N: Revealed type is "Any"
[file has_attr.pyi]
from typing import Any
def __getattr__(name: str) -> Any: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrImportFromRetType]
from has_attr import int_attr
reveal_type(int_attr) # N: Revealed type is "builtins.int"
[file has_attr.pyi]
def __getattr__(name: str) -> int: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrImportFromNotStub]
from non_stub import name
reveal_type(name) # N: Revealed type is "Any"
[file non_stub.py]
from typing import Any
def __getattr__(name: str) -> Any: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrImportFromAs]
from has_attr import name as n
reveal_type(name) # E: Name "name" is not defined # N: Revealed type is "Any"
reveal_type(n) # N: Revealed type is "Any"
[file has_attr.pyi]
from typing import Any
def __getattr__(name: str) -> Any: ...
[builtins fixtures/module.pyi]
[case testModuleLevelGetattrImportFromAsTwice]
from has_attr import name
from has_attr import name
from has_attr import x
from has_attr import y as x # E: Name "x" already defined (possibly by an import)
reveal_type(name) # N: Revealed type is "builtins.int"
[file has_attr.pyi]
from typing import Any
def __getattr__(name: str) -> int: ...
[case testModuleLevelGetattrAssignedGood]
import non_stub
reveal_type(non_stub.name) # N: Revealed type is "builtins.int"
[file non_stub.py]
from typing import Callable
def make_getattr_good() -> Callable[[str], int]: ...
__getattr__ = make_getattr_good() # OK
[case testModuleLevelGetattrAssignedBad]
import non_stub
reveal_type(non_stub.name)
[file non_stub.py]
from typing import Callable
def make_getattr_bad() -> Callable[[], int]: ...
__getattr__ = make_getattr_bad()
[out]
tmp/non_stub.py:4: error: Invalid signature "Callable[[], int]" for "__getattr__"
main:2: note: Revealed type is "builtins.int"
[case testModuleLevelGetattrImportedGood]
import non_stub
reveal_type(non_stub.name) # N: Revealed type is "builtins.int"
[file non_stub.py]
from has_getattr import __getattr__
[file has_getattr.py]
def __getattr__(name: str) -> int: ...
[case testModuleLevelGetattrImportedBad]
import non_stub
reveal_type(non_stub.name)
[file non_stub.py]
from has_getattr import __getattr__
[file has_getattr.py]
def __getattr__() -> int: ...
[out]
tmp/has_getattr.py:1: error: Invalid signature "Callable[[], int]" for "__getattr__"
main:2: note: Revealed type is "builtins.int"
[builtins fixtures/module.pyi]
[case testFailedImportFromTwoModules]
import c
import b
[file b.py]
import c
[out]
-- TODO: it would be better for this to be in the other order
tmp/b.py:1: error: Cannot find implementation or library stub for module named "c"
main:1: error: Cannot find implementation or library stub for module named "c"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testIndirectFromImportWithinCycle1]
import a
[file a.py]
from b import f
from c import x
[file b.py]
from c import y
from a import x
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file c.py]
x = str()
y = int()
[case testIndirectFromImportWithinCycle2]
import a
[file a.py]
from c import y
from b import x
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file b.py]
from a import f
from c import x
[file c.py]
x = str()
y = int()
[case testIndirectFromImportWithinCycleInPackage]
import p.a
[file p/__init__.py]
[file p/a.py]
from p.b import f
from p.c import x
[file p/b.py]
from p.c import y
from p.a import x
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file p/c.py]
x = str()
y = int()
[case testIndirectFromImportWithinCycleInPackageIgnoredInit]
# cmd: mypy -m p.a p.b p.c
# flags: --follow-imports=skip --ignore-missing-imports
[file p/__init__.py]
[file p/a.py]
from p.b import f
from p.c import x
[file p/b.py]
from p.c import y
from p.a import x
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file p/c.py]
x = str()
y = int()
[case testForwardReferenceToListAlias]
x: List[int]
reveal_type(x) # N: Revealed type is "builtins.list[builtins.int]"
def f() -> 'List[int]': pass
reveal_type(f) # N: Revealed type is "def () -> builtins.list[builtins.int]"
class A:
y: 'List[str]'
def g(self, x: 'List[int]') -> None: pass
reveal_type(A().y) # N: Revealed type is "builtins.list[builtins.str]"
reveal_type(A().g) # N: Revealed type is "def (x: builtins.list[builtins.int])"
from typing import List
[builtins fixtures/list.pyi]
[case testIndirectStarImportWithinCycle1]
import a
[file a.py]
from b import f
from c import x
[file b.py]
from c import y
from a import *
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file c.py]
x = str()
y = int()
[case testIndirectStarImportWithinCycle2]
import a
[file a.py]
from c import y
from b import *
def f() -> None: pass
reveal_type(x) # N: Revealed type is "builtins.str"
[file b.py]
from a import f
from c import x
[file c.py]
x = str()
y = int()
[case testModuleGetattrInit1]
from a import b
x = b.f()
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrInit2]
import a.b
x = a.b.f()
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrInit3]
import a.b
x = a.b.f()
[file a/__init__.py]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
main:1: error: Cannot find implementation or library stub for module named "a.b"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testModuleGetattrInit4]
import a.b.c
x = a.b.c.f()
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrInit5]
from a.b import f
x = f()
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrInit5a]
from a.b import f
x = f()
[file a/__init__.pyi]
from types import ModuleType
def __getattr__(attr: str) -> ModuleType: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrInit8]
import a.b.c.d
x = a.b.c.d.f()
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[file a/b/__init__.pyi]
# empty (i.e. complete subpackage)
[builtins fixtures/module.pyi]
[out]
main:1: error: Cannot find implementation or library stub for module named "a.b.c.d"
main:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
main:1: error: Cannot find implementation or library stub for module named "a.b.c"
[case testModuleGetattrInit8a]
import a.b.c # E: Cannot find implementation or library stub for module named "a.b.c" # N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
import a.d # OK
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[file a/b/__init__.pyi]
# empty (i.e. complete subpackage)
[builtins fixtures/module.pyi]
[case testModuleGetattrInit10]
# flags: --config-file tmp/mypy.ini
import a.b.c # silenced
import a.b.d # error
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[file a/b/__init__.pyi]
# empty (i.e. complete subpackage)
[file mypy.ini]
\[mypy]
\[mypy-a.b.c]
ignore_missing_imports = True
[builtins fixtures/module.pyi]
[out]
main:3: error: Cannot find implementation or library stub for module named "a.b.d"
main:3: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testModuleGetattrInit10PyProjectTOML]
# flags: --config-file tmp/pyproject.toml
import a.b.c # silenced
import a.b.d # error
[file a/__init__.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[file a/b/__init__.pyi]
# empty (i.e. complete subpackage)
[file pyproject.toml]
\[tool.mypy]
\[[tool.mypy.overrides]]
module = 'a.b.c'
ignore_missing_imports = true
[builtins fixtures/module.pyi]
[out]
main:3: error: Cannot find implementation or library stub for module named "a.b.d"
main:3: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testMultipleModulesInOverridePyProjectTOML]
# flags: --config-file tmp/pyproject.toml
import a
import b
[file pyproject.toml]
\[tool.mypy]
\[[tool.mypy.overrides]]
module = ['a', 'b']
ignore_missing_imports = true
[case testIndirectFromImportWithinCycleUsedAsBaseClass]
import a
[file a.py]
from b import f
from c import B
[file b.py]
from c import y
class A(B): pass
reveal_type(A().x) # N: Revealed type is "builtins.int"
from a import B
def f() -> None: pass
[file c.py]
class B:
x: int
x = str()
y = int()
[case testImportFromReExportInCycleUsingRelativeImport1]
from m import One
reveal_type(One)
[file m/__init__.py]
from .one import One
from .two import Two
reveal_type(One)
[file m/one.py]
class One:
pass
[file m/two.py]
from m import One
reveal_type(One)
x: One
reveal_type(x)
class Two(One):
pass
y: Two
y = x
x = y
[out]
tmp/m/two.py:2: note: Revealed type is "def () -> m.one.One"
tmp/m/two.py:4: note: Revealed type is "m.one.One"
tmp/m/two.py:9: error: Incompatible types in assignment (expression has type "One", variable has type "Two")
tmp/m/__init__.py:3: note: Revealed type is "def () -> m.one.One"
main:2: note: Revealed type is "def () -> m.one.One"
[case testImportReExportInCycleUsingRelativeImport2]
from m import One
reveal_type(One)
[file m/__init__.py]
from .one import One
from .two import Two
reveal_type(One)
[file m/one.py]
class One:
pass
[file m/two.py]
import m
reveal_type(m.One)
x: m.One
reveal_type(x)
class Two:
pass
[out]
tmp/m/two.py:2: note: Revealed type is "def () -> m.one.One"
tmp/m/two.py:4: note: Revealed type is "m.one.One"
tmp/m/__init__.py:3: note: Revealed type is "def () -> m.one.One"
main:2: note: Revealed type is "def () -> m.one.One"
[case testImportReExportedNamedTupleInCycle1]
from m import One
[file m/__init__.py]
from .one import One
from .two import Two
[file m/one.py]
from typing import NamedTuple
class One(NamedTuple):
name: str
[file m/two.py]
import m
x = m.One(name="Foo")
reveal_type(x.name)
class Two:
pass
[builtins fixtures/tuple.pyi]
[out]
tmp/m/two.py:3: note: Revealed type is "builtins.str"
[case testImportReExportedNamedTupleInCycle2]
from m import One
[file m/__init__.py]
from .one import One
from .two import Two
[file m/one.py]
from typing import NamedTuple
One = NamedTuple('One', [('name', str)])
[file m/two.py]
import m
x = m.One(name="Foo")
reveal_type(x.name)
class Two:
pass
[builtins fixtures/tuple.pyi]
[out]
tmp/m/two.py:3: note: Revealed type is "builtins.str"
[case testImportReExportedTypeAliasInCycle]
from m import One
[file m/__init__.py]
from .one import One
from .two import Two
[file m/one.py]
from typing import Union
One = Union[int, str]
[file m/two.py]
import m
x: m.One
reveal_type(x)
class Two:
pass
[out]
tmp/m/two.py:3: note: Revealed type is "Union[builtins.int, builtins.str]"
[case testImportCycleSpecialCase]
import p
[file p/__init__.py]
from . import a
from . import b
reveal_type(a.foo())
[file p/a.py]
import p
def foo() -> int: pass
[file p/b.py]
import p
def run() -> None:
reveal_type(p.a.foo())
[builtins fixtures/module.pyi]
[out]
tmp/p/b.py:4: note: Revealed type is "builtins.int"
tmp/p/__init__.py:3: note: Revealed type is "builtins.int"
[case testMissingSubmoduleImportedWithIgnoreMissingImports]
# flags: --ignore-missing-imports
import whatever.works
import a.b
x = whatever.works.f()
y = a.b.f()
[file a/__init__.py]
# empty
[out]
[case testMissingSubmoduleImportedWithIgnoreMissingImportsStub]
# flags: --ignore-missing-imports --follow-imports=skip
import whatever.works
import a.b
x = whatever.works.f()
y = a.b.f()
xx: whatever.works.C
yy: a.b.C
xx2: whatever.works.C.D
yy2: a.b.C.D
[file a/__init__.pyi]
# empty
[out]
[case testMissingSubmoduleImportedWithIgnoreMissingImportsNested]
# flags: --ignore-missing-imports
import a.b.c.d
y = a.b.c.d.f()
[file a/__init__.py]
# empty
[file a/b/__init__.py]
# empty
[out]
[case testModuleGetattrBusted]
from a import A
x: A
reveal_type(x) # N: Revealed type is "Any"
[file a.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testModuleGetattrBusted2]
from a import A
def f(x: A.B) -> None: ...
reveal_type(f) # N: Revealed type is "def (x: Any)"
[file a.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
[builtins fixtures/module.pyi]
[out]
[case testNoGetattrInterference]
import testmod as t
def f(x: t.Cls) -> None:
reveal_type(x) # N: Revealed type is "testmod.Cls"
[file testmod.pyi]
from typing import Any
def __getattr__(attr: str) -> Any: ...
class Cls: ...
[builtins fixtures/module.pyi]
[out]
[case testFunctionWithDunderName]
def __add__(self) -> int: ...
[case testFunctionWithReversibleDunderName]
def __radd__(self) -> int: ...
[case testFunctionWithInPlaceDunderName]
def __iadd__(self) -> int: ...
-- Tests for PEP 420 namespace packages.
[case testClassicPackage]
from foo.bar import x
[file foo/__init__.py]
# empty
[file foo/bar.py]
x = 0
[case testClassicNotPackage]
# flags: --no-namespace-packages
from foo.bar import x
[file foo/bar.py]
x = 0
[out]
main:2: error: Cannot find implementation or library stub for module named "foo.bar"
main:2: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testNamespacePackage]
# flags: --namespace-packages
from foo.bar import x
reveal_type(x) # N: Revealed type is "builtins.int"
[file foo/bar.py]
x = 0
[case testNamespacePackageWithMypyPath]
# flags: --namespace-packages --config-file tmp/mypy.ini
from foo.bax import x
from foo.bay import y
from foo.baz import z
reveal_type(x) # N: Revealed type is "builtins.int"
reveal_type(y) # N: Revealed type is "builtins.int"
reveal_type(z) # N: Revealed type is "builtins.int"
[file xx/foo/bax.py]
x = 0
[file yy/foo/bay.py]
y = 0
[file foo/baz.py]
z = 0
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx, tmp/yy
[case testNamespacePackageWithMypyPathPyProjectTOML]
# flags: --namespace-packages --config-file tmp/pyproject.toml
from foo.bax import x
from foo.bay import y
from foo.baz import z
reveal_type(x) # N: Revealed type is "builtins.int"
reveal_type(y) # N: Revealed type is "builtins.int"
reveal_type(z) # N: Revealed type is "builtins.int"
[file xx/foo/bax.py]
x = 0
[file yy/foo/bay.py]
y = 0
[file foo/baz.py]
z = 0
[file pyproject.toml]
\[tool.mypy]
mypy_path = ["tmp/xx", "tmp/yy"]
[case testClassicPackageIgnoresEarlierNamespacePackage]
# flags: --namespace-packages --config-file tmp/mypy.ini
from foo.bar import y
reveal_type(y) # N: Revealed type is "builtins.int"
[file xx/foo/bar.py]
x = ''
[file yy/foo/bar.py]
y = 0
[file yy/foo/__init__.py]
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx, tmp/yy
[case testNamespacePackagePickFirstOnMypyPath]
# flags: --namespace-packages --config-file tmp/mypy.ini
from foo.bar import x
reveal_type(x) # N: Revealed type is "builtins.int"
[file xx/foo/bar.py]
x = 0
[file yy/foo/bar.py]
x = ''
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx, tmp/yy
[case testNamespacePackageInsideClassicPackage]
# flags: --namespace-packages --config-file tmp/mypy.ini
from foo.bar.baz import x
reveal_type(x) # N: Revealed type is "builtins.int"
[file xx/foo/bar/baz.py]
x = ''
[file yy/foo/bar/baz.py]
x = 0
[file yy/foo/__init__.py]
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx, tmp/yy
[case testClassicPackageInsideNamespacePackage]
# flags: --namespace-packages --config-file tmp/mypy.ini
from foo.bar.baz.boo import x
reveal_type(x) # N: Revealed type is "builtins.int"
[file xx/foo/bar/baz/boo.py]
x = ''
[file xx/foo/bar/baz/__init__.py]
[file yy/foo/bar/baz/boo.py]
x = 0
[file yy/foo/bar/__init__.py]
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx, tmp/yy
[case testNamespacePackagePlainImport]
# flags: --namespace-packages
import foo.bar.baz
reveal_type(foo.bar.baz.x) # N: Revealed type is "builtins.int"
[file foo/bar/baz.py]
x = 0
[case testModuleGetAttrAssignUnannotated]
import roles
# this should not crash
roles.role = 1
[file roles.pyi]
def __getattr__(name): ...
[case testModuleGetAttrAssignUnannotatedDouble]
import roles
# this also should not crash
roles.role.attr = 1
[file roles.pyi]
def __getattr__(name): ...
[case testModuleGetAttrAssignAny]
import roles
roles.role = 1
[file roles.pyi]
from typing import Any
def __getattr__(name: str) -> Any: ...
[case testModuleGetAttrAssignError]
import roles
roles.role = 1 # E: Incompatible types in assignment (expression has type "int", variable has type "str")
[file roles.pyi]
def __getattr__(name: str) -> str: ...
[case testModuleGetAttrAssignSubmodule]
import roles
roles.role = 1
roles.missing.attr = 1
[file roles/__init__.pyi]
from typing import Any
def __getattr__(name: str) -> Any: ...
[case testModuleGetAttrAssignSubmoduleStrict]
import roles
roles.role = 1 # E: Incompatible types in assignment (expression has type "int", variable has type Module)
[file roles/__init__.pyi]
from types import ModuleType
def __getattr__(name: str) -> ModuleType: ...
[builtins fixtures/module.pyi]
[case testAlwaysReportMissingAttributesOnFoundModules]
# flags: --ignore-missing-imports
import pack.mod as alias
x: alias.NonExistent # E: Name "alias.NonExistent" is not defined
[file pack/__init__.py]
[file pack/mod.py]
class Existent: pass
[case testModuleAttributeTwoSuggestions]
import m
m.aaaa # E: Module has no attribute "aaaa"; maybe "aaaaa" or "aaa"?
[file m.py]
aaa: int
aaaaa: int
[builtins fixtures/module.pyi]
[case testModuleAttributeThreeSuggestions]
import m
m.aaaaa # E: Module has no attribute "aaaaa"; maybe "aaaab", "aaaba", or "aabaa"?
[file m.py]
aaaab: int
aaaba: int
aabaa: int
[builtins fixtures/module.pyi]
[case testDirectlyImportTypedDictObjectAtTopLevel]
import foo.bar.custom_dict
from foo import bar
from foo.bar import custom_dict
from foo.bar.custom_dict import CustomDict
foo.bar.custom_dict.CustomDict(foo="abc", bar="def")
bar.custom_dict.CustomDict(foo="abc", bar="def")
custom_dict.CustomDict(foo="abc", bar="def")
CustomDict(foo="abc", bar="def")
[file foo/__init__.py]
[file foo/bar/__init__.py]
[file foo/bar/custom_dict.py]
from typing import TypedDict
CustomDict = TypedDict(
"CustomDict",
{
"foo": str,
"bar": str,
},
)
[typing fixtures/typing-full.pyi]
[builtins fixtures/tuple.pyi]
[case testNoReExportFromMissingStubs]
from stub import a # E: Module "stub" does not explicitly export attribute "a"
from stub import b
from stub import c # E: Module "stub" has no attribute "c"
from stub import d # E: Module "stub" does not explicitly export attribute "d"
[file stub.pyi]
from mystery import a, b as b, c as d
[out]
tmp/stub.pyi:1: error: Cannot find implementation or library stub for module named "mystery"
tmp/stub.pyi:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[case testPackagePath]
import p
reveal_type(p.__path__) # N: Revealed type is "builtins.list[builtins.str]"
p.m.__path__ # E: "object" has no attribute "__path__"
[file p/__init__.py]
from . import m as m
[file p/m.py]
[builtins fixtures/list.pyi]
[case testSpecialModulesNameImplicitAttr]
import typing
import builtins
import abc
reveal_type(abc.__name__) # N: Revealed type is "builtins.str"
reveal_type(builtins.__name__) # N: Revealed type is "builtins.str"
reveal_type(typing.__name__) # N: Revealed type is "builtins.str"
[case testSpecialAttrsAreAvailableInClasses]
class Some:
name = __name__
reveal_type(Some.name) # N: Revealed type is "builtins.str"
[case testReExportAllInStub]
from m1 import C
from m1 import D # E: Module "m1" has no attribute "D"
C()
C(1) # E: Too many arguments for "C"
[file m1.pyi]
from m2 import *
[file m2.pyi]
from m3 import *
from m3 import __all__ as __all__
class D: pass
[file m3.pyi]
from m4 import C as C
__all__ = ['C']
[file m4.pyi]
class C: pass
[builtins fixtures/list.pyi]
[case testMypyPathAndPython2Dir]
# flags: --config-file tmp/mypy.ini
from m import f
f(1) # E: Argument 1 to "f" has incompatible type "int"; expected "str"
f('x')
[file xx/@python2/m.pyi]
def f(x: int) -> None: ...
[file xx/m.pyi]
def f(x: str) -> None: ...
[file mypy.ini]
\[mypy]
mypy_path = tmp/xx
[case testImportCycleSpecialCase2]
import m
[file m.pyi]
from f import F
class M: pass
[file f.pyi]
from m import M
from typing import Generic, TypeVar
T = TypeVar("T")
class W(Generic[T]): ...
class F(M):
A = W[int]
x: C
class C(W[F.A]): ...
[case testImportCycleSpecialCase3]
import f
[file m.pyi]
from f import F
class M: pass
[file f.pyi]
from m import M
from typing import Generic, TypeVar
T = TypeVar("T")
class F(M):
x: C
class C: ...
[case testLimitLegacyStubErrorVolume]
# flags: --disallow-any-expr --soft-error-limit=5
import certifi # E: Cannot find implementation or library stub for module named "certifi" \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # N: (Skipping most remaining errors due to unresolved imports or missing stubs; fix these first)
certifi.x
certifi.x
certifi.x
certifi.x
[case testDoNotLimitErrorVolumeIfNotImportErrors]
# flags: --disallow-any-expr --soft-error-limit=5
def f(): pass
certifi = f() # E: Expression has type "Any"
1() # E: "int" not callable
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
1() # E: "int" not callable
[case testDoNotLimitImportErrorVolume]
# flags: --disallow-any-expr --soft-error-limit=3
import xyz1 # E: Cannot find implementation or library stub for module named "xyz1" \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
import xyz2 # E: Cannot find implementation or library stub for module named "xyz2"
import xyz3 # E: Cannot find implementation or library stub for module named "xyz3"
import xyz4 # E: Cannot find implementation or library stub for module named "xyz4"
[case testUnlimitedStubErrorVolume]
# flags: --disallow-any-expr --soft-error-limit=-1
import certifi # E: Cannot find implementation or library stub for module named "certifi" \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
certifi.x # E: Expression has type "Any"
[case testIgnoreErrorFromMissingStubs1]
# flags: --config-file tmp/pyproject.toml
import certifi
from foobar1 import x
import foobar2
[file pyproject.toml]
\[tool.mypy]
ignore_missing_imports = true
\[[tool.mypy.overrides]]
module = "certifi"
ignore_missing_imports = true
\[[tool.mypy.overrides]]
module = "foobar1"
ignore_missing_imports = true
[case testIgnoreErrorFromMissingStubs2]
# flags: --config-file tmp/pyproject.toml
import certifi
from foobar1 import x
import foobar2 # E: Cannot find implementation or library stub for module named "foobar2" \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[file pyproject.toml]
\[tool.mypy]
ignore_missing_imports = false
\[[tool.mypy.overrides]]
module = "certifi"
ignore_missing_imports = true
\[[tool.mypy.overrides]]
module = "foobar1"
ignore_missing_imports = true
[case testIgnoreErrorFromGoogleCloud]
# flags: --ignore-missing-imports
import google.cloud
from google.cloud import x
[case testErrorFromGoogleCloud]
import google.cloud # E: Cannot find implementation or library stub for module named "google.cloud" \
# E: Cannot find implementation or library stub for module named "google"
from google.cloud import x
import google.non_existent # E: Cannot find implementation or library stub for module named "google.non_existent"
from google.non_existent import x
import google.cloud.ndb # E: Library stubs not installed for "google.cloud.ndb" \
# N: Hint: On Debian systems, you can install the python3-typeshed package to provide mypy with stubs for many popular libraries. In virtual Python environments, you can instead run "python3 -m pip install types-google-cloud-ndb". \
# N: (or run "mypy --install-types" to install all missing stub packages) \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
from google.cloud import ndb
[case testMissingSubmoduleOfInstalledStubPackage]
import bleach.exists
import bleach.xyz # E: Cannot find implementation or library stub for module named "bleach.xyz" \
# N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
from bleach.abc import fgh # E: Cannot find implementation or library stub for module named "bleach.abc"
[file bleach/__init__.pyi]
[file bleach/exists.pyi]
[case testMissingSubmoduleOfInstalledStubPackageIgnored]
# flags: --ignore-missing-imports
import bleach.xyz
from bleach.abc import fgh
[file bleach/__init__.pyi]
[case testCyclicUndefinedImportWithName]
import a
[file a.py]
from b import no_such_export
[file b.py]
from a import no_such_export # E: Module "a" has no attribute "no_such_export"
[case testCyclicUndefinedImportWithStar1]
import a
[file a.py]
from b import no_such_export
[file b.py]
from a import *
[out]
tmp/b.py:1: error: Cannot resolve name "no_such_export" (possible cyclic definition)
tmp/a.py:1: error: Module "b" has no attribute "no_such_export"
[case testCyclicUndefinedImportWithStar2]
import a
[file a.py]
from b import no_such_export
[file b.py]
from c import *
[file c.py]
from a import *
[out]
tmp/c.py:1: error: Cannot resolve name "no_such_export" (possible cyclic definition)
tmp/b.py:1: error: Cannot resolve name "no_such_export" (possible cyclic definition)
tmp/a.py:1: error: Module "b" has no attribute "no_such_export"
[case testCyclicUndefinedImportWithStar3]
import test1
[file test1.py]
from dir1 import *
[file dir1/__init__.py]
from .test2 import *
[file dir1/test2.py]
from test1 import aaaa # E: Module "test1" has no attribute "aaaa"
[case testIncompatibleOverrideFromCachedModuleIncremental]
import b
[file a.py]
class Foo:
def frobnicate(self, x: str, *args, **kwargs): pass
[file b.py]
from a import Foo
class Bar(Foo):
def frobnicate(self) -> None: pass
[file b.py.2]
from a import Foo
class Bar(Foo):
def frobnicate(self, *args: int) -> None: pass
[file b.py.3]
from a import Foo
class Bar(Foo):
def frobnicate(self, *args: int) -> None: pass # type: ignore[override] # I know
[builtins fixtures/dict.pyi]
[out1]
tmp/b.py:3: error: Signature of "frobnicate" incompatible with supertype "a.Foo"
tmp/b.py:3: note: Superclass:
tmp/b.py:3: note: def frobnicate(self, x: str, *args: Any, **kwargs: Any) -> Any
tmp/b.py:3: note: Subclass:
tmp/b.py:3: note: def frobnicate(self) -> None
[out2]
tmp/b.py:3: error: Signature of "frobnicate" incompatible with supertype "a.Foo"
tmp/b.py:3: note: Superclass:
tmp/b.py:3: note: def frobnicate(self, x: str, *args: Any, **kwargs: Any) -> Any
tmp/b.py:3: note: Subclass:
tmp/b.py:3: note: def frobnicate(self, *args: int) -> None
|