summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-18 02:13:16 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-18 02:13:16 (GMT)
commit4be1e24933db192b3cf95e102a46673bb3312dc3 (patch)
treefa5fffe594ed4c7ab826c9294f900645e21931cc /Misc
parent320b39158ebfd63f25eb5f10dd65792334445eda (diff)
downloadcpython-4be1e24933db192b3cf95e102a46673bb3312dc3.zip
cpython-4be1e24933db192b3cf95e102a46673bb3312dc3.tar.gz
cpython-4be1e24933db192b3cf95e102a46673bb3312dc3.tar.bz2
#19855: uuid.get_node now looks on the PATH for executables on unix.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1b58dea..0d05366 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,10 @@ Core and Builtins
Library
-------
+- Issue #19855: uuid.getnode() on Unix now looks on the PATH for the
+ executables used to find the mac address, with /sbin and /usr/sbin as
+ fallbacks.
+
- Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Original patch by Simon Sapin.