Merged revisions 86192 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86192 | brian.curtin | 2010-11-05 09:48:35 -0500 (Fri, 05 Nov 2010) | 3 lines Shift the pipe-using code into an else block, then close the pipe in finally. Removes two ResourceWarnings. ........
This commit is contained in:
parent
fc3901e5bf
commit
be80ab4b83
11
Lib/uuid.py
11
Lib/uuid.py
|
@ -353,10 +353,13 @@ def _ipconfig_getnode():
|
||||||
pipe = os.popen(os.path.join(dir, 'ipconfig') + ' /all')
|
pipe = os.popen(os.path.join(dir, 'ipconfig') + ' /all')
|
||||||
except IOError:
|
except IOError:
|
||||||
continue
|
continue
|
||||||
for line in pipe:
|
else:
|
||||||
value = line.split(':')[-1].strip().lower()
|
for line in pipe:
|
||||||
if re.match('([0-9a-f][0-9a-f]-){5}[0-9a-f][0-9a-f]', value):
|
value = line.split(':')[-1].strip().lower()
|
||||||
return int(value.replace('-', ''), 16)
|
if re.match('([0-9a-f][0-9a-f]-){5}[0-9a-f][0-9a-f]', value):
|
||||||
|
return int(value.replace('-', ''), 16)
|
||||||
|
finally:
|
||||||
|
pipe.close()
|
||||||
|
|
||||||
def _netbios_getnode():
|
def _netbios_getnode():
|
||||||
"""Get the hardware address on Windows using NetBIOS calls.
|
"""Get the hardware address on Windows using NetBIOS calls.
|
||||||
|
|
Loading…
Reference in New Issue