Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
8b86349ecb336d25691265e8d40ecbd1388f916e
/
.
/
test-data
/
unit
/
lib-stub
/
abc.pyi
blob: 0b1a51c78f5c594a7496281b5eed90a8bb161aa0 [
file
]
from
typing
import
Type
,
Any
,
TypeVar
T
=
TypeVar
(
'T'
,
bound
=
Type
[
Any
])
class
ABCMeta
(
type
):
def
register
(
cls
,
tp
:
T
)
->
T
:
pass
abstractmethod
=
object
()
abstractproperty
=
object
()