We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7f87bb commit aa0d0d1Copy full SHA for aa0d0d1
stdlib/2and3/uuid.pyi
@@ -69,10 +69,10 @@ class UUID:
69
def get_urn(self) -> str: ...
70
def get_variant(self) -> str: ...
71
def get_version(self) -> Optional[_Int]: ...
72
- def __cmp__(self, other: Any) -> int: ...
+ def __cmp__(self, other: Any) -> _Int: ...
73
74
def getnode() -> int: ...
75
-def uuid1(node: Optional[int] = ..., clock_seq: Optional[int] = ...) -> UUID: ...
+def uuid1(node: Optional[_Int] = ..., clock_seq: Optional[_Int] = ...) -> UUID: ...
76
def uuid3(namespace: UUID, name: str) -> UUID: ...
77
def uuid4() -> UUID: ...
78
def uuid5(namespace: UUID, name: str) -> UUID: ...
0 commit comments