Add UserString and UserList data attribute (#2518)

This commit is contained in:
Lourens Veen
2018-10-16 10:36:17 +02:00
committed by Sebastian Rittau
parent 254af0ff2a
commit 703c03e4b0
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ _UST = TypeVar("_UST", bound=UserString)
_MST = TypeVar("_MST", bound=MutableString)
class UserString(Sequence[UserString]):
data: unicode
def __init__(self, seq: object) -> None: ...
def __int__(self) -> int: ...
def __long__(self) -> long: ...