fix typos in uiid (#1151)

From #1148
This commit is contained in:
Jelle Zijlstra
2017-04-09 18:15:58 -07:00
committed by GitHub
parent a7f87bb006
commit aa0d0d152e

View File

@@ -69,10 +69,10 @@ class UUID:
def get_urn(self) -> str: ...
def get_variant(self) -> str: ...
def get_version(self) -> Optional[_Int]: ...
def __cmp__(self, other: Any) -> int: ...
def __cmp__(self, other: Any) -> _Int: ...
def getnode() -> int: ...
def uuid1(node: Optional[int] = ..., clock_seq: Optional[int] = ...) -> UUID: ...
def uuid1(node: Optional[_Int] = ..., clock_seq: Optional[_Int] = ...) -> UUID: ...
def uuid3(namespace: UUID, name: str) -> UUID: ...
def uuid4() -> UUID: ...
def uuid5(namespace: UUID, name: str) -> UUID: ...