diff options
author | Shantanu <hauntsaninja@users.noreply.github.com> | 2020-02-05 20:43:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 20:43:09 (GMT) |
commit | 8b6f6526f857bb7523b0fcff09b45bc6471289e9 (patch) | |
tree | 425c357cef7950ee3f7b5ab335e54e1084ed55d9 /Lib/uuid.py | |
parent | 58f4e1a6ee4c6ea82f3f5075d9d9d344ce6b8a56 (diff) | |
download | cpython-8b6f6526f857bb7523b0fcff09b45bc6471289e9.zip cpython-8b6f6526f857bb7523b0fcff09b45bc6471289e9.tar.gz cpython-8b6f6526f857bb7523b0fcff09b45bc6471289e9.tar.bz2 |
bpo-39559: Remove unused, undocumented argument from uuid.getnode (GH-18369)
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r-- | Lib/uuid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py index 6a436d3..224a766 100644 --- a/Lib/uuid.py +++ b/Lib/uuid.py @@ -757,7 +757,7 @@ else: _node = None -def getnode(*, getters=None): +def getnode(): """Get the hardware address as a 48-bit positive integer. The first time this runs, it may launch a separate program, which could |