aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/uuid.py
diff options
context:
space:
mode:
authorChaim Sanders <csanders-git@users.noreply.github.com>2022-11-02 11:41:20 -0700
committerGitHub <noreply@github.com>2022-11-02 19:41:20 +0100
commite3ec272f57c3948834a6159cf2604978d3db67a0 (patch)
treef51493a96f08ed69ad6571ea9c35aec27b334ae1 /Lib/uuid.py
parent3d889dc0a0efa6fcbd984ece365c9ac08d2cd4a9 (diff)
downloadcpython-e3ec272f57c3948834a6159cf2604978d3db67a0.tar.gz
cpython-e3ec272f57c3948834a6159cf2604978d3db67a0.zip
gh-98415: Fix uuid.getnode() ifconfig implementation (#98423)
The uuid.getnode() function has multiple implementations, tested sequentially. The ifconfig implementation was incorrect and always failed: fix it. In practice, functions of libuuid library are preferred, if available: uuid_generate_time_safe(), uuid_create() or uuid_generate_time(). Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r--Lib/uuid.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py
index 8fe2479f3f2..e863b631877 100644
--- a/Lib/uuid.py
+++ b/Lib/uuid.py
@@ -371,7 +371,12 @@ def _get_command_stdout(command, *args):
# for are actually localized, but in theory some system could do so.)
env = dict(os.environ)
env['LC_ALL'] = 'C'
- proc = subprocess.Popen((executable,) + args,
+ # Empty strings will be quoted by popen so we should just ommit it
+ if args != ('',):
+ command = (executable, *args)
+ else:
+ command = (executable,)
+ proc = subprocess.Popen(command,
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
env=env)
@@ -511,7 +516,7 @@ def _ifconfig_getnode():
mac = _find_mac_near_keyword('ifconfig', args, keywords, lambda i: i+1)
if mac:
return mac
- return None
+ return None
def _ip_getnode():
"""Get the hardware address on Unix by running ip."""