From aa0d0d152e0f24344cded983591966196812ceb9 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 9 Apr 2017 18:15:58 -0700 Subject: [PATCH] fix typos in uiid (#1151) From #1148 --- stdlib/2and3/uuid.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/2and3/uuid.pyi b/stdlib/2and3/uuid.pyi index dea8f3ee7..f05ccf0c8 100644 --- a/stdlib/2and3/uuid.pyi +++ b/stdlib/2and3/uuid.pyi @@ -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: ...