diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-17 14:51:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 14:51:42 (GMT) |
commit | eb886db1e99a15f15a2342aa496197a5f88fa9c8 (patch) | |
tree | c08db3a179900c44054a09986cccc10e92ccdb57 /Misc | |
parent | a45b695b9fcfbbb0a087222abc5c8d691a7d2770 (diff) | |
download | cpython-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.rst | 2 |
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. |