summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-04 07:37:32 (GMT)
committerGitHub <noreply@github.com>2017-11-04 07:37:32 (GMT)
commitee1a9a2b78d5b6bb1a8148fc5fcf365e6d4e9e67 (patch)
tree978182d729335256f441b297f9f1a86ee1b4702e /Misc
parent93952f881500053057c2e08c4b253ac61233d7db (diff)
downloadcpython-ee1a9a2b78d5b6bb1a8148fc5fcf365e6d4e9e67.zip
cpython-ee1a9a2b78d5b6bb1a8148fc5fcf365e6d4e9e67.tar.gz
cpython-ee1a9a2b78d5b6bb1a8148fc5fcf365e6d4e9e67.tar.bz2
bpo-9678: Fix determining the MAC address in the uuid module. (#4264)
* Using ifconfig on NetBSD and OpenBSD. * Using arp on Linux, FreeBSD, NetBSD and OpenBSD. Based on patch by Takayuki Shimizukawa.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-11-03-22-05-47.bpo-9678.oD51q6.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-03-22-05-47.bpo-9678.oD51q6.rst b/Misc/NEWS.d/next/Library/2017-11-03-22-05-47.bpo-9678.oD51q6.rst
new file mode 100644
index 0000000..683a2de
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-11-03-22-05-47.bpo-9678.oD51q6.rst
@@ -0,0 +1,6 @@
+Fixed determining the MAC address in the uuid module:
+
+* Using ifconfig on NetBSD and OpenBSD.
+* Using arp on Linux, FreeBSD, NetBSD and OpenBSD.
+
+Based on patch by Takayuki Shimizukawa.