mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-06 09:57:41 +08:00
Use variable annotations everywhere (#2909)
This commit is contained in:
committed by
Sebastian Rittau
parent
b3c76aab49
commit
efb67946f8
@@ -1,15 +1,15 @@
|
||||
class Repr:
|
||||
maxarray = ... # type: int
|
||||
maxdeque = ... # type: int
|
||||
maxdict = ... # type: int
|
||||
maxfrozenset = ... # type: int
|
||||
maxlevel = ... # type: int
|
||||
maxlist = ... # type: int
|
||||
maxlong = ... # type: int
|
||||
maxother = ... # type: int
|
||||
maxset = ... # type: int
|
||||
maxstring = ... # type: int
|
||||
maxtuple = ... # type: int
|
||||
maxarray: int
|
||||
maxdeque: int
|
||||
maxdict: int
|
||||
maxfrozenset: int
|
||||
maxlevel: int
|
||||
maxlist: int
|
||||
maxlong: int
|
||||
maxother: int
|
||||
maxset: int
|
||||
maxstring: int
|
||||
maxtuple: int
|
||||
def __init__(self) -> None: ...
|
||||
def _repr_iterable(self, x, level: complex, left, right, maxiter, trail=...) -> str: ...
|
||||
def repr(self, x) -> str: ...
|
||||
@@ -27,5 +27,5 @@ class Repr:
|
||||
|
||||
def _possibly_sorted(x) -> list: ...
|
||||
|
||||
aRepr = ... # type: Repr
|
||||
aRepr: Repr
|
||||
def repr(x) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user