index
:
quackmark
master
Comparison of type checkers for Python.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
puzzles
/
typing_protocol_missing_member.py
blob: 79bd70ec7f24ab8da23dc4b420bfb8398e9258d2 (
plain
)
1
2
3
4
5
6
7
from
typing
import
Protocol
class
P
(
Protocol
):
x
:
int
class
B
(
P
):
# error
pass