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
|
-- Type checker test cases for abstract classes.
-- Subtyping with abstract classes
-- -------------------------------
[case testAbstractClassSubclasses]
from abc import abstractmethod, ABCMeta
i: I
j: J
a: A
b: B
c: C
def f(): i, j, a, b, c # Prevent redefinition
j = c # E: Incompatible types in assignment (expression has type "C", variable has type "J")
a = i # E: Incompatible types in assignment (expression has type "I", variable has type "A")
a = j # E: Incompatible types in assignment (expression has type "J", variable has type "A")
b = i # E: Incompatible types in assignment (expression has type "I", variable has type "B")
i = a
i = b
i = c
j = a
j = b
a = b
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class J(metaclass=ABCMeta):
@abstractmethod
def g(self): pass
class A(I, J): pass
class B(A): pass
class C(I): pass
[builtins fixtures/tuple.pyi]
[case testAbstractClassSubtypingViaExtension]
from abc import abstractmethod, ABCMeta
i: I
j: J
a: A
o: object
def f(): i, j, a, o # Prevent redefinition
j = i # E: Incompatible types in assignment (expression has type "I", variable has type "J")
a = i # E: Incompatible types in assignment (expression has type "I", variable has type "A")
a = j # E: Incompatible types in assignment (expression has type "J", variable has type "A")
i = o # E: Incompatible types in assignment (expression has type "object", variable has type "I")
j = o # E: Incompatible types in assignment (expression has type "object", variable has type "J")
i = a
j = a
i = j
o = i
o = j
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class J(I): pass
class A(J): pass
[builtins fixtures/tuple.pyi]
[case testInheritingAbstractClassInSubclass]
from abc import abstractmethod, ABCMeta
i: I
a: A
b: B
if int():
i = a # E: Incompatible types in assignment (expression has type "A", variable has type "I")
if int():
b = a # E: Incompatible types in assignment (expression has type "A", variable has type "B")
if int():
a = b
if int():
i = b
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class A: pass
class B(A, I): pass
-- Abstract class objects
-- ----------------------
[case testAbstractClassAsTypeObject]
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
o: object
t: type
o = I
t = I
[case testAbstractClassInCasts]
from typing import cast
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class A(I): pass
class B: pass
i: I
a: A
b: B
o: object
if int():
a = cast(I, o) # E: Incompatible types in assignment (expression has type "I", variable has type "A")
if int():
b = cast(B, i) # Ok; a subclass of B might inherit I
if int():
i = cast(I, b) # Ok; a subclass of B might inherit I
if int():
i = cast(I, o)
if int():
i = cast(I, a)
[builtins fixtures/tuple.pyi]
[case testInstantiatingClassThatImplementsAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class B(A):
def f(self): pass
B()
[out]
[case testInstantiatingAbstractClass]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta): pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
A() # OK
B() # E: Cannot instantiate abstract class "B" with abstract attribute "f"
[out]
[case testInstantiatingClassWithInheritedAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
@abstractmethod
def g(self): pass
class B(A): pass
B() # E: Cannot instantiate abstract class "B" with abstract attributes "f" and "g"
[out]
[case testInstantiationAbstractsInTypeForFunctions]
from typing import Type
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
def f(cls: Type[A]) -> A:
return cls() # OK
def g() -> A:
return A() # E: Cannot instantiate abstract class "A" with abstract attribute "m"
f(A) # E: Only concrete class can be given where "type[A]" is expected
f(B) # E: Only concrete class can be given where "type[A]" is expected
f(C) # OK
x: Type[B]
f(x) # OK
[out]
[case testAbstractTypeInADict]
from typing import Dict, Type
from abc import abstractmethod
class Class:
@abstractmethod
def method(self) -> None:
pass
my_dict_init: Dict[int, Type[Class]] = {0: Class} # E: Only concrete class can be given where "tuple[int, type[Class]]" is expected
class Child(Class):
def method(self) -> None: ...
other_dict_init: Dict[int, Type[Class]] = {0: Child} # ok
[builtins fixtures/dict.pyi]
[out]
[case testInstantiationAbstractsInTypeForAliases]
from typing import Type
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
def f(cls: Type[A]) -> A:
return cls() # OK
Alias = A
GoodAlias = C
Alias() # E: Cannot instantiate abstract class "A" with abstract attribute "m"
GoodAlias()
f(Alias) # E: Only concrete class can be given where "type[A]" is expected
f(GoodAlias)
[out]
[case testInstantiationAbstractsInTypeForVariables]
# flags: --no-strict-optional
from typing import Type, overload
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
var: Type[A]
var()
if int():
var = A # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var = B # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var = C # OK
var_old = None # type: Type[A] # Old syntax for variable annotations
var_old()
if int():
var_old = A # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var_old = B # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var_old = C # OK
class D(A):
@overload
def __new__(cls, a) -> "D": ...
@overload
def __new__(cls) -> "D": ...
def __new__(cls, a=None) -> "D": ...
if int():
var = D # E: Can only assign concrete classes to a variable of type "type[A]"
[out]
[case testInstantiationAbstractsInTypeForClassMethods]
from typing import Type
from abc import abstractmethod
class Logger:
@staticmethod
def log(a: Type[C]):
pass
class C:
@classmethod
def action(cls) -> None:
cls() #OK for classmethods
Logger.log(cls) #OK for classmethods
@abstractmethod
def m(self) -> None:
pass
[builtins fixtures/classmethod.pyi]
[out]
[case testInstantiatingClassWithInheritedAbstractMethodAndSuppression]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def a(self): pass
@abstractmethod
def b(self): pass
@abstractmethod
def c(self): pass
@abstractmethod
def d(self): pass
@abstractmethod
def e(self): pass
@abstractmethod
def f(self): pass
@abstractmethod
def g(self): pass
@abstractmethod
def h(self): pass
@abstractmethod
def i(self): pass
@abstractmethod
def j(self): pass
a = A() # E: Cannot instantiate abstract class "A" with abstract attributes "a", "b", ... and "j" (7 methods suppressed)
[out]
-- Implementing abstract methods
-- -----------------------------
[case testImplementingAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
@abstractmethod
def g(self, x: int) -> int: pass
class B(A):
def f(self, x: str) -> int: \
# E: Argument 1 of "f" is incompatible with supertype "A"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
return 0
def g(self, x: int) -> int: return 0
[out]
[case testImplementingAbstractMethodWithMultipleBaseClasses]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
class J(metaclass=ABCMeta):
@abstractmethod
def g(self, x: str) -> str: pass
class A(I, J):
def f(self, x: str) -> int: return 0 \
# E: Argument 1 of "f" is incompatible with supertype "I"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
def g(self, x: str) -> int: return 0 \
# E: Return type "int" of "g" incompatible with return type "str" in supertype "J"
def h(self) -> int: return 0 # Not related to any base class
[out]
[case testImplementingAbstractMethodWithExtension]
from abc import abstractmethod, ABCMeta
import typing
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
class I(J): pass
class A(I):
def f(self, x: str) -> int: return 0 \
# E: Argument 1 of "f" is incompatible with supertype "J"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
[out]
[case testInvalidOverridingAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, x: 'J') -> None: pass
class I(J):
@abstractmethod
def f(self, x: 'I') -> None: pass # E: Argument 1 of "f" is incompatible with supertype "J"; supertype defines the argument type as "J" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
[out]
[case testAbstractClassCoAndContraVariance]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, a: A) -> 'I': pass
@abstractmethod
def g(self, a: A) -> 'I': pass
@abstractmethod
def h(self, a: 'I') -> A: pass
class A(I):
def h(self, a: 'A') -> 'I': # Fail
return A()
def f(self, a: 'I') -> 'I':
return A()
def g(self, a: 'A') -> 'A':
return A()
[out]
main:11: error: Return type "I" of "h" incompatible with return type "A" in supertype "I"
main:11: error: Argument 1 of "h" is incompatible with supertype "I"; supertype defines the argument type as "I"
main:11: note: This violates the Liskov substitution principle
main:11: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
-- Accessing abstract members
-- --------------------------
[case testAccessingAbstractMethod]
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, a: int) -> str: pass
i: I
a: int
b: str
if int():
a = i.f(a) # E: Incompatible types in assignment (expression has type "str", variable has type "int")
if int():
b = i.f(b) # E: Argument 1 to "f" of "I" has incompatible type "str"; expected "int"
i.g() # E: "I" has no attribute "g"
if int():
b = i.f(a)
[builtins fixtures/tuple.pyi]
[case testAccessingInheritedAbstractMethod]
from abc import abstractmethod, ABCMeta
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, a: int) -> str: pass
class I(J): pass
i: I
a: int
b: str
if int():
a = i.f(1) # E: Incompatible types in assignment (expression has type "str", variable has type "int")
if int():
b = i.f(1)
-- Any (dynamic) types
-- -------------------
[builtins fixtures/tuple.pyi]
[case testAbstractClassWithAllDynamicTypes]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x): pass
@abstractmethod
def g(self, x): pass
class A(I):
def f(self, x): pass
def g(self, x, y) -> None: pass # Fail
[out]
main:10: error: Signature of "g" incompatible with supertype "I"
main:10: note: Superclass:
main:10: note: def g(self, x: Any) -> Any
main:10: note: Subclass:
main:10: note: def g(self, x: Any, y: Any) -> None
[case testAbstractClassWithAllDynamicTypes2]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x): pass
@abstractmethod
def g(self, x): pass
class A(I):
def f(self, x): pass
def g(self, x, y): pass
[out]
[case testAbstractClassWithImplementationUsingDynamicTypes]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> None: pass
@abstractmethod
def g(self, x: int) -> None: pass
class A(I):
def f(self, x): pass
def g(self, x, y): pass
[out]
-- Special cases
-- -------------
[case testMultipleAbstractBases]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B):
@abstractmethod
def h(self) -> None: pass
[case testMemberAccessWithMultipleAbstractBaseClasses]
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B): pass
x: C
x.f()
x.g()
x.f(x) # E: Too many arguments for "f" of "A"
x.g(x) # E: Too many arguments for "g" of "B"
[case testInstantiatingAbstractClassWithMultipleBaseClasses]
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B):
def f(self) -> None: pass
class D(A, B):
def g(self) -> None: pass
class E(A, B):
def f(self) -> None: pass
def g(self) -> None: pass
C() # E: Cannot instantiate abstract class "C" with abstract attribute "g"
D() # E: Cannot instantiate abstract class "D" with abstract attribute "f"
E()
[case testInconsistentMro]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta): pass
class B(object, A, metaclass=ABCMeta): # E: Cannot determine consistent method resolution order (MRO) for "B"
pass
class C(object, A): # E: Cannot determine consistent method resolution order (MRO) for "C" \
# E: Metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
pass
[case testOverloadedAbstractMethod]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@abstractmethod
@overload
def f(self, x: int) -> int: pass
@abstractmethod
@overload
def f(self, x: str) -> str: pass
class B(A):
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
A() # E: Cannot instantiate abstract class "A" with abstract attribute "f"
B()
B().f(1)
a = B() # type: A
a.f(1)
a.f('')
a.f(B()) # E: No overload variant of "f" of "A" matches argument type "B" \
# N: Possible overload variants: \
# N: def f(self, x: int) -> int \
# N: def f(self, x: str) -> str
[case testOverloadedAbstractMethodWithAlternativeDecoratorOrder]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@overload
@abstractmethod
def f(self, x: int) -> int: pass
@overload
@abstractmethod
def f(self, x: str) -> str: pass
class B(A):
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
A() # E: Cannot instantiate abstract class "A" with abstract attribute "f"
B()
B().f(1)
a = B() # type: A
a.f(1)
a.f('')
a.f(B()) # E: No overload variant of "f" of "A" matches argument type "B" \
# N: Possible overload variants: \
# N: def f(self, x: int) -> int \
# N: def f(self, x: str) -> str
[case testOverloadedAbstractMethodVariantMissingDecorator0]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@abstractmethod \
# E: Overloaded method has both abstract and non-abstract variants
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
[out]
[case testOverloadedAbstractMethodVariantMissingDecorator1]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@overload \
# E: Overloaded method has both abstract and non-abstract variants
def f(self, x: int) -> int: pass
@abstractmethod
@overload
def f(self, x: str) -> str: pass
[out]
[case testMultipleInheritanceAndAbstractMethod]
import typing
from abc import abstractmethod, ABCMeta
class A:
def f(self, x: str) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self, x: str) -> None: pass
class C(A, B): pass
[case testMultipleInheritanceAndAbstractMethod2]
import typing
from abc import abstractmethod, ABCMeta
class A:
def f(self, x: str) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> None: pass
class C(A, B): pass
[out]
main:8: error: Definition of "f" in base class "A" is incompatible with definition in base class "B"
[case testCallAbstractMethodBeforeDefinition]
import typing
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
def f(self) -> None:
self.g(1) # E: Argument 1 to "g" of "A" has incompatible type "int"; expected "str"
@abstractmethod
def g(self, x: str) -> None: pass
[out]
[case testAbstractOperatorMethods1]
import typing
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def __lt__(self, other: 'A') -> int: pass
@abstractmethod
def __gt__(self, other: 'A') -> int: pass
[case testAbstractOperatorMethods2]
from typing import cast, Any
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def __radd__(self, other: 'C') -> str: pass # Error
class B:
@abstractmethod
def __add__(self, other: 'A') -> int: pass
class C:
def __add__(self, other: int) -> B:
return cast(Any, None)
[out]
[case testAbstractClassWithAnyBase]
from typing import Any
from abc import abstractmethod, ABCMeta
A: Any
class D(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class C(A, D):
pass
C() # A might implement 'f'
-- Abstract properties
-- -------------------
[case testReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
def f(a: A) -> None:
a.x() # E: "int" not callable
a.x = 1 # E: Property "x" defined in "A" is read-only
[out]
[case testReadOnlyAbstractPropertyForwardRef]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x() # E: "int" not callable
a.x = 1 # E: Property "x" defined in "A" is read-only
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
[out]
[case testReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y # E: "int" has no attribute "y"
a.x = 1
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, x: int) -> None: pass
[case testReadWriteDeleteAbstractProperty]
# flags: --no-strict-optional
from abc import ABC, abstractmethod
class Abstract(ABC):
@property
@abstractmethod
def prop(self) -> str: ...
@prop.setter
@abstractmethod
def prop(self, code: str) -> None: ...
@prop.deleter
@abstractmethod
def prop(self) -> None: ...
class Good(Abstract):
@property
def prop(self) -> str: ...
@prop.setter
def prop(self, code: str) -> None: ...
@prop.deleter
def prop(self) -> None: ...
class Bad1(Abstract):
@property # E: Read-only property cannot override read-write property
def prop(self) -> str: ...
class ThisShouldProbablyError(Abstract):
@property
def prop(self) -> str: ...
@prop.setter
def prop(self, code: str) -> None: ...
a = Good()
reveal_type(a.prop) # N: Revealed type is "builtins.str"
a.prop = 123 # E: Incompatible types in assignment (expression has type "int", variable has type "str")
[builtins fixtures/property.pyi]
[case testInstantiateClassWithReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A): pass
b = B() # E: Cannot instantiate abstract class "B" with abstract attribute "x"
[case testInstantiateClassWithReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, x: int) -> None: pass
class B(A): pass
b = B() # E: Cannot instantiate abstract class "B" with abstract attribute "x"
[case testImplementAbstractPropertyViaProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> int: return 0
b = B()
b.x() # E: "int" not callable
[builtins fixtures/property.pyi]
[case testImplementReadWriteAbstractPropertyViaProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property
def x(self) -> int: return 0
@x.setter
def x(self, v: int) -> None: pass
b = B()
b.x.y # E: "int" has no attribute "y"
[builtins fixtures/property.pyi]
[case testImplementAbstractPropertyViaPropertyInvalidType]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> str: return "no" # E: Signature of "x" incompatible with supertype "A" \
# N: Superclass: \
# N: int \
# N: Subclass: \
# N: str
b = B()
b.x() # E: "str" not callable
[builtins fixtures/property.pyi]
[case testCantImplementAbstractPropertyViaInstanceVariable]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
def __init__(self) -> None:
self.x = 1 # E
b = B() # E
b.x.y # E
[builtins fixtures/property.pyi]
[out]
main:7: error: Property "x" defined in "A" is read-only
main:8: error: Cannot instantiate abstract class "B" with abstract attribute "x"
main:9: error: "int" has no attribute "y"
[case testSuperWithAbstractProperty]
# flags: --no-strict-optional
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> int:
return super().x.y # E: Call to abstract method "x" of "A" with trivial body via super() is unsafe \
# E: "int" has no attribute "y"
[builtins fixtures/property.pyi]
[case testSuperWithReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property
def x(self) -> int:
return super().x.y # E
@x.setter
def x(self, v: int) -> None:
super().x = '' # E
[builtins fixtures/property.pyi]
[out]
main:10: error: "int" has no attribute "y"
main:13: error: Invalid assignment target
[case testOnlyImplementGetterOfReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property # E
def x(self) -> int: return 0
b = B()
b.x.y # E
[builtins fixtures/property.pyi]
[out]
main:8: error: Read-only property cannot override read-write property
main:11: error: "int" has no attribute "y"
[case testDynamicallyTypedReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
def f(a: A) -> None:
a.x.y
a.x = 1 # E: Property "x" defined in "A" is read-only
[out]
[case testDynamicallyTypedReadOnlyAbstractPropertyForwardRef]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y
a.x = 1 # E: Property "x" defined in "A" is read-only
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
[out]
[case testDynamicallyTypedReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y
a.x = 1
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
@x.setter
def x(self, x): pass
[out]
[case testMixinTypedAbstractProperty]
from abc import ABCMeta, abstractproperty
class A(metaclass=ABCMeta):
@abstractproperty
def foo(cls) -> str:
pass
class Mixin:
foo = "foo"
class C(Mixin, A):
pass
[out]
[case testMixinTypedProperty]
class A:
@property
def foo(cls) -> str:
return "yes"
class Mixin:
foo = "foo"
class C(Mixin, A):
pass
[builtins fixtures/property.pyi]
[case testMixinSubtypedProperty]
class X:
pass
class Y(X):
pass
class A:
@property
def foo(cls) -> X:
return X()
class Mixin:
foo = Y()
class C(Mixin, A):
pass
[builtins fixtures/property.pyi]
[case testMixinTypedPropertyReversed]
class A:
@property
def foo(cls) -> str:
return "no"
class Mixin:
foo = "foo"
class C(A, Mixin): # E: Cannot override writeable attribute "foo" in base "Mixin" with read-only property in base "A"
pass
[builtins fixtures/property.pyi]
-- Special cases
-- -------------
[case testNestedAbstractClass]
from abc import abstractmethod, ABCMeta
class A:
class B(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class C(B): pass
A.B() # E: Cannot instantiate abstract class "B" with abstract attribute "f"
A.C() # E: Cannot instantiate abstract class "C" with abstract attribute "f"
[case testAbstractNewTypeAllowed]
from typing import NewType, Mapping
Config = NewType('Config', Mapping[str, str])
bad = Mapping[str, str]() # E: Cannot instantiate abstract class "Mapping" with abstract attribute "__iter__"
default = Config({'cannot': 'modify'}) # OK
default[1] = 2 # E: Unsupported target for indexed assignment ("Config")
[builtins fixtures/dict.pyi]
[typing fixtures/typing-full.pyi]
[case testSubclassOfABCFromDictionary]
from abc import abstractmethod, ABCMeta
class MyAbstractType(metaclass=ABCMeta):
@abstractmethod
def do(self): pass
class MyConcreteA(MyAbstractType):
def do(self):
print('A')
class MyConcreteB(MyAbstractType):
def do(self):
print('B')
class MyAbstractA(MyAbstractType):
@abstractmethod
def do(self): pass
class MyAbstractB(MyAbstractType):
@abstractmethod
def do(self): pass
my_concrete_types = {
'A': MyConcreteA,
'B': MyConcreteB,
}
my_abstract_types = {
'A': MyAbstractA,
'B': MyAbstractB,
}
reveal_type(my_concrete_types) # N: Revealed type is "builtins.dict[builtins.str, def () -> __main__.MyAbstractType]"
reveal_type(my_abstract_types) # N: Revealed type is "builtins.dict[builtins.str, def () -> __main__.MyAbstractType]"
a = my_concrete_types['A']()
a.do()
b = my_concrete_types['B']()
b.do()
c = my_abstract_types['A']() # E: Cannot instantiate abstract class "MyAbstractType" with abstract attribute "do"
c.do()
d = my_abstract_types['B']() # E: Cannot instantiate abstract class "MyAbstractType" with abstract attribute "do"
d.do()
[builtins fixtures/dict.pyi]
[case testAbstractClassesWorkWithGenericDecorators]
from abc import abstractmethod, ABCMeta
from typing import Type, TypeVar
T = TypeVar("T")
def deco(cls: Type[T]) -> Type[T]: return cls
@deco
class A(metaclass=ABCMeta):
@abstractmethod
def foo(self, x: int) -> None: ...
[case testAbstractPropertiesAllowed]
from abc import abstractmethod
class B:
@property
@abstractmethod
def x(self) -> int: ...
@property
@abstractmethod
def y(self) -> int: ...
@y.setter
@abstractmethod
def y(self, value: int) -> None: ...
B() # E: Cannot instantiate abstract class "B" with abstract attributes "x" and "y"
b: B
b.x = 1 # E: Property "x" defined in "B" is read-only
b.y = 1
[builtins fixtures/property.pyi]
-- Treatment of empty bodies in ABCs and protocols
-- -----------------------------------------------
[case testEmptyBodyProhibitedFunction]
from typing import overload, Union
def func1(x: str) -> int: pass # E: Missing return statement
def func2(x: str) -> int: ... # E: Missing return statement
def func3(x: str) -> int: # E: Missing return statement
"""Some function."""
@overload
def func4(x: int) -> int: ...
@overload
def func4(x: str) -> str: ...
def func4(x: Union[int, str]) -> Union[int, str]: # E: Missing return statement
pass
@overload
def func5(x: int) -> int: ...
@overload
def func5(x: str) -> str: ...
def func5(x: Union[int, str]) -> Union[int, str]: # E: Missing return statement
"""Some function."""
[case testEmptyBodyProhibitedMethodNonAbstract]
from typing import overload, Union
class A:
def func1(self, x: str) -> int: pass # E: Missing return statement
def func2(self, x: str) -> int: ... # E: Missing return statement
def func3(self, x: str) -> int: # E: Missing return statement
"""Some function."""
class B:
@classmethod
def func1(cls, x: str) -> int: pass # E: Missing return statement
@classmethod
def func2(cls, x: str) -> int: ... # E: Missing return statement
@classmethod
def func3(cls, x: str) -> int: # E: Missing return statement
"""Some function."""
class C:
@overload
def func4(self, x: int) -> int: ...
@overload
def func4(self, x: str) -> str: ...
def func4(self, x: Union[int, str]) -> Union[int, str]: # E: Missing return statement
pass
@overload
def func5(self, x: int) -> int: ...
@overload
def func5(self, x: str) -> str: ...
def func5(self, x: Union[int, str]) -> Union[int, str]: # E: Missing return statement
"""Some function."""
[builtins fixtures/classmethod.pyi]
[case testEmptyBodyProhibitedPropertyNonAbstract]
class A:
@property
def x(self) -> int: ... # E: Missing return statement
@property
def y(self) -> int: ... # E: Missing return statement
@y.setter
def y(self, value: int) -> None: ...
class B:
@property
def x(self) -> int: pass # E: Missing return statement
@property
def y(self) -> int: pass # E: Missing return statement
@y.setter
def y(self, value: int) -> None: pass
class C:
@property
def x(self) -> int: # E: Missing return statement
"""Some property."""
@property
def y(self) -> int: # E: Missing return statement
"""Some property."""
@y.setter
def y(self, value: int) -> None: pass
[builtins fixtures/property.pyi]
[case testEmptyBodyNoteABCMeta]
from abc import ABC
class A(ABC):
def foo(self) -> int: # E: Missing return statement \
# N: If the method is meant to be abstract, use @abc.abstractmethod
...
[case testEmptyBodyAllowedFunctionStub]
import stub
[file stub.pyi]
from typing import overload, Union
def func1(x: str) -> int: pass
def func2(x: str) -> int: ...
def func3(x: str) -> int:
"""Some function."""
[case testEmptyBodyAllowedMethodNonAbstractStub]
import stub
[file stub.pyi]
from typing import overload, Union
class A:
def func1(self, x: str) -> int: pass
def func2(self, x: str) -> int: ...
def func3(self, x: str) -> int:
"""Some function."""
class B:
@classmethod
def func1(cls, x: str) -> int: pass
@classmethod
def func2(cls, x: str) -> int: ...
@classmethod
def func3(cls, x: str) -> int:
"""Some function."""
[builtins fixtures/classmethod.pyi]
[case testEmptyBodyAllowedPropertyNonAbstractStub]
import stub
[file stub.pyi]
class A:
@property
def x(self) -> int: ...
@property
def y(self) -> int: ...
@y.setter
def y(self, value: int) -> None: ...
class B:
@property
def x(self) -> int: pass
@property
def y(self) -> int: pass
@y.setter
def y(self, value: int) -> None: pass
class C:
@property
def x(self) -> int:
"""Some property."""
@property
def y(self) -> int:
"""Some property."""
@y.setter
def y(self, value: int) -> None: pass
[builtins fixtures/property.pyi]
[case testEmptyBodyAllowedMethodAbstract]
from typing import overload, Union
from abc import abstractmethod
class A:
@abstractmethod
def func1(self, x: str) -> int: pass
@abstractmethod
def func2(self, x: str) -> int: ...
@abstractmethod
def func3(self, x: str) -> int:
"""Some function."""
class B:
@classmethod
@abstractmethod
def func1(cls, x: str) -> int: pass
@classmethod
@abstractmethod
def func2(cls, x: str) -> int: ...
@classmethod
@abstractmethod
def func3(cls, x: str) -> int:
"""Some function."""
class C:
@overload
@abstractmethod
def func4(self, x: int) -> int: ...
@overload
@abstractmethod
def func4(self, x: str) -> str: ...
@abstractmethod
def func4(self, x: Union[int, str]) -> Union[int, str]:
pass
@overload
@abstractmethod
def func5(self, x: int) -> int: ...
@overload
@abstractmethod
def func5(self, x: str) -> str: ...
@abstractmethod
def func5(self, x: Union[int, str]) -> Union[int, str]:
"""Some function."""
[builtins fixtures/classmethod.pyi]
[case testEmptyBodyAllowedPropertyAbstract]
from abc import abstractmethod
class A:
@property
@abstractmethod
def x(self) -> int: ...
@property
@abstractmethod
def y(self) -> int: ...
@y.setter
@abstractmethod
def y(self, value: int) -> None: ...
class B:
@property
@abstractmethod
def x(self) -> int: pass
@property
@abstractmethod
def y(self) -> int: pass
@y.setter
@abstractmethod
def y(self, value: int) -> None: pass
class C:
@property
@abstractmethod
def x(self) -> int:
"""Some property."""
@property
@abstractmethod
def y(self) -> int:
"""Some property."""
@y.setter
@abstractmethod
def y(self, value: int) -> None: pass
[builtins fixtures/property.pyi]
[case testEmptyBodyImplicitlyAbstractProtocol]
from typing import Protocol, overload, Union
class P1(Protocol):
def meth(self) -> int: ...
class B1(P1): ...
class C1(P1):
def meth(self) -> int:
return 0
B1() # E: Cannot instantiate abstract class "B1" with abstract attribute "meth"
C1()
class P2(Protocol):
@classmethod
def meth(cls) -> int: ...
class B2(P2): ...
class C2(P2):
@classmethod
def meth(cls) -> int:
return 0
B2() # E: Cannot instantiate abstract class "B2" with abstract attribute "meth"
C2()
class P3(Protocol):
@overload
def meth(self, x: int) -> int: ...
@overload
def meth(self, x: str) -> str: ...
class B3(P3): ...
class C3(P3):
@overload
def meth(self, x: int) -> int: ...
@overload
def meth(self, x: str) -> str: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return 0
B3() # E: Cannot instantiate abstract class "B3" with abstract attribute "meth"
C3()
[builtins fixtures/classmethod.pyi]
[case testEmptyBodyImplicitlyAbstractProtocolProperty]
from typing import Protocol
class P1(Protocol):
@property
def attr(self) -> int: ...
class B1(P1): ...
class C1(P1):
@property
def attr(self) -> int:
return 0
B1() # E: Cannot instantiate abstract class "B1" with abstract attribute "attr"
C1()
class P2(Protocol):
@property
def attr(self) -> int: ...
@attr.setter
def attr(self, value: int) -> None: ...
class B2(P2): ...
class C2(P2):
@property
def attr(self) -> int: return 0
@attr.setter
def attr(self, value: int) -> None: pass
B2() # E: Cannot instantiate abstract class "B2" with abstract attribute "attr"
C2()
[builtins fixtures/property.pyi]
[case testEmptyBodyImplicitlyAbstractProtocolStub]
from stub import P1, P2, P3, P4
class B1(P1): ...
class B2(P2): ...
class B3(P3): ...
class B4(P4): ...
B1()
B2()
B3()
B4() # E: Cannot instantiate abstract class "B4" with abstract attribute "meth"
[file stub.pyi]
from typing import Protocol, overload, Union
from abc import abstractmethod
class P1(Protocol):
def meth(self) -> int: ...
class P2(Protocol):
@classmethod
def meth(cls) -> int: ...
class P3(Protocol):
@overload
def meth(self, x: int) -> int: ...
@overload
def meth(self, x: str) -> str: ...
class P4(Protocol):
@abstractmethod
def meth(self) -> int: ...
[builtins fixtures/classmethod.pyi]
[case testEmptyBodyUnsafeAbstractSuper]
from stub import StubProto, StubAbstract
from typing import Protocol
from abc import abstractmethod
class Proto(Protocol):
def meth(self) -> int: ...
class ProtoDef(Protocol):
def meth(self) -> int: return 0
class Abstract:
@abstractmethod
def meth(self) -> int: ...
class AbstractDef:
@abstractmethod
def meth(self) -> int: return 0
class SubProto(Proto):
def meth(self) -> int:
return super().meth() # E: Call to abstract method "meth" of "Proto" with trivial body via super() is unsafe
class SubProtoDef(ProtoDef):
def meth(self) -> int:
return super().meth()
class SubAbstract(Abstract):
def meth(self) -> int:
return super().meth() # E: Call to abstract method "meth" of "Abstract" with trivial body via super() is unsafe
class SubAbstractDef(AbstractDef):
def meth(self) -> int:
return super().meth()
class SubStubProto(StubProto):
def meth(self) -> int:
return super().meth()
class SubStubAbstract(StubAbstract):
def meth(self) -> int:
return super().meth()
[file stub.pyi]
from typing import Protocol
from abc import abstractmethod
class StubProto(Protocol):
def meth(self) -> int: ...
class StubAbstract:
@abstractmethod
def meth(self) -> int: ...
[case testEmptyBodyUnsafeAbstractSuperProperty]
from stub import StubProto, StubAbstract
from typing import Protocol
from abc import abstractmethod
class Proto(Protocol):
@property
def attr(self) -> int: ...
class SubProto(Proto):
@property
def attr(self) -> int: return super().attr # E: Call to abstract method "attr" of "Proto" with trivial body via super() is unsafe
class ProtoDef(Protocol):
@property
def attr(self) -> int: return 0
class SubProtoDef(ProtoDef):
@property
def attr(self) -> int: return super().attr
class Abstract:
@property
@abstractmethod
def attr(self) -> int: ...
class SubAbstract(Abstract):
@property
@abstractmethod
def attr(self) -> int: return super().attr # E: Call to abstract method "attr" of "Abstract" with trivial body via super() is unsafe
class AbstractDef:
@property
@abstractmethod
def attr(self) -> int: return 0
class SubAbstractDef(AbstractDef):
@property
@abstractmethod
def attr(self) -> int: return super().attr
class SubStubProto(StubProto):
@property
def attr(self) -> int: return super().attr
class SubStubAbstract(StubAbstract):
@property
def attr(self) -> int: return super().attr
[file stub.pyi]
from typing import Protocol
from abc import abstractmethod
class StubProto(Protocol):
@property
def attr(self) -> int: ...
class StubAbstract:
@property
@abstractmethod
def attr(self) -> int: ...
[builtins fixtures/property.pyi]
[case testEmptyBodyUnsafeAbstractSuperOverloads]
from stub import StubProto
from typing import Protocol, overload, Union
class ProtoEmptyImpl(Protocol):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
raise NotImplementedError
class ProtoDefImpl(Protocol):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return 0
class ProtoNoImpl(Protocol):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
class SubProtoEmptyImpl(ProtoEmptyImpl):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return super().meth(0) # E: Call to abstract method "meth" of "ProtoEmptyImpl" with trivial body via super() is unsafe
class SubProtoDefImpl(ProtoDefImpl):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return super().meth(0)
class SubStubProto(StubProto):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return super().meth(0)
# TODO: it would be good to also give an error in this case.
class SubProtoNoImpl(ProtoNoImpl):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
def meth(self, x: Union[int, str]) -> Union[int, str]:
return super().meth(0)
[file stub.pyi]
from typing import Protocol, overload
class StubProto(Protocol):
@overload
def meth(self, x: str) -> str: ...
@overload
def meth(self, x: int) -> int: ...
[builtins fixtures/exception.pyi]
[case testEmptyBodyNoSuperWarningWithoutStrict]
# flags: --no-strict-optional
from typing import Protocol
from abc import abstractmethod
class Proto(Protocol):
def meth(self) -> int: ...
class Abstract:
@abstractmethod
def meth(self) -> int: ...
class SubProto(Proto):
def meth(self) -> int:
return super().meth() # E: Call to abstract method "meth" of "Proto" with trivial body via super() is unsafe
class SubAbstract(Abstract):
def meth(self) -> int:
return super().meth() # E: Call to abstract method "meth" of "Abstract" with trivial body via super() is unsafe
[case testEmptyBodyNoSuperWarningOptionalReturn]
from typing import Protocol, Optional
from abc import abstractmethod
class Proto(Protocol):
def meth(self) -> Optional[int]: pass
class Abstract:
@abstractmethod
def meth(self) -> Optional[int]: pass
class SubProto(Proto):
def meth(self) -> Optional[int]:
return super().meth() # E: Call to abstract method "meth" of "Proto" with trivial body via super() is unsafe
class SubAbstract(Abstract):
def meth(self) -> Optional[int]:
return super().meth() # E: Call to abstract method "meth" of "Abstract" with trivial body via super() is unsafe
[case testEmptyBodyTypeCheckingOnly]
from typing import TYPE_CHECKING
class C:
if TYPE_CHECKING:
def dynamic(self) -> int: ... # OK
|