Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stdlib/2and3/uuid.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class UUID:
def get_version(self) -> Optional[_Int]: ...
def __cmp__(self, other: Any) -> _Int: ...

def getnode(*, getters: None = ...) -> int: ... # getters is undocumented (and unused)
def getnode() -> int: ...
def uuid1(node: Optional[_Int] = ..., clock_seq: Optional[_Int] = ...) -> UUID: ...
def uuid3(namespace: UUID, name: str) -> UUID: ...
def uuid4() -> UUID: ...
Expand Down
1 change: 0 additions & 1 deletion tests/stubtest_whitelists/py35.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ typing.Sequence.index
typing.runtime_checkable
unittest.async_case
uuid.UUID.int
uuid.getnode
xml.etree.cElementTree.XMLPullParser
xml.parsers.expat.XMLParserType.ExternalEntityParserCreate
zipfile.ZipFile.open
Expand Down
1 change: 0 additions & 1 deletion tests/stubtest_whitelists/py36.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,5 @@ unittest.async_case
urllib.parse.parse_qs
urllib.parse.parse_qsl
uuid.UUID.int
uuid.getnode
webbrowser.Opera.raise_opts
xml.parsers.expat.XMLParserType.ExternalEntityParserCreate
1 change: 1 addition & 0 deletions tests/stubtest_whitelists/py37.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ urllib.parse.parse_qs
urllib.parse.parse_qsl
uuid.UUID.int
uuid.UUID.is_safe
uuid.getnode # undocumented, unused parameter getters that was later removed
webbrowser.Opera.raise_opts
xml.parsers.expat.XMLParserType.ExternalEntityParserCreate
1 change: 1 addition & 0 deletions tests/stubtest_whitelists/py38.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ types.WrapperDescriptorType.__get__
unittest.TestCase.addCleanup
unittest.case.TestCase.addCleanup
unittest.doModuleCleanups
uuid.getnode # undocumented, unused parameter getters that was later removed
weakref.WeakValueDictionary.__init__
weakref.WeakValueDictionary.update
weakref.getweakrefcount
Expand Down