bpo-39559: Remove unused, undocumented argument from uuid.getnode (GH-18369)

This commit is contained in:
Shantanu 2020-02-05 12:43:09 -08:00 committed by GitHub
parent 58f4e1a6ee
commit 8b6f6526f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -757,7 +757,7 @@ else:
_node = None _node = None
def getnode(*, getters=None): def getnode():
"""Get the hardware address as a 48-bit positive integer. """Get the hardware address as a 48-bit positive integer.
The first time this runs, it may launch a separate program, which could The first time this runs, it may launch a separate program, which could

View File

@ -0,0 +1 @@
Remove unused, undocumented argument ``getters`` from :func:`uuid.getnode`