From 8b6f6526f857bb7523b0fcff09b45bc6471289e9 Mon Sep 17 00:00:00 2001 From: Shantanu Date: Wed, 5 Feb 2020 12:43:09 -0800 Subject: bpo-39559: Remove unused, undocumented argument from uuid.getnode (GH-18369) --- Lib/uuid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/uuid.py') diff --git a/Lib/uuid.py b/Lib/uuid.py index 6a436d371a..224a766ff2 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 -- cgit v1.2.1