summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-03-17 14:51:42 (GMT)
committerGitHub <noreply@github.com>2020-03-17 14:51:42 (GMT)
commiteb886db1e99a15f15a2342aa496197a5f88fa9c8 (patch)
treec08db3a179900c44054a09986cccc10e92ccdb57 /Misc
parenta45b695b9fcfbbb0a087222abc5c8d691a7d2770 (diff)
downloadcpython-eb886db1e99a15f15a2342aa496197a5f88fa9c8.zip
cpython-eb886db1e99a15f15a2342aa496197a5f88fa9c8.tar.gz
cpython-eb886db1e99a15f15a2342aa496197a5f88fa9c8.tar.bz2
bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043)
uuid.getnode() now skips IPv6 addresses with the same string length than a MAC address (17 characters): only use MAC addresses.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-03-17-12-40-38.bpo-39991.hLPPs4.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-03-17-12-40-38.bpo-39991.hLPPs4.rst b/Misc/NEWS.d/next/Library/2020-03-17-12-40-38.bpo-39991.hLPPs4.rst
new file mode 100644
index 0000000..ef5a9e4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-03-17-12-40-38.bpo-39991.hLPPs4.rst
@@ -0,0 +1,2 @@
+:func:`uuid.getnode` now skips IPv6 addresses with the same string length
+than a MAC address (17 characters): only use MAC addresses.