diff --git a/stdlib/2and3/uuid.pyi b/stdlib/2and3/uuid.pyi index dea8f3ee7576..f05ccf0c819a 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: ...