diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2019-09-26 19:43:15 (GMT) |
---|---|---|
committer | Tal Einat <taleinat+github@gmail.com> | 2019-09-26 19:43:15 (GMT) |
commit | 0bcbfa43d55d9558cdcb256d8998366281322080 (patch) | |
tree | 502bb02727b111f295eade45f9a9af44d184a499 /Misc | |
parent | 9f77268f901cc3e8874e5042361520a0e482476a (diff) | |
download | cpython-0bcbfa43d55d9558cdcb256d8998366281322080.zip cpython-0bcbfa43d55d9558cdcb256d8998366281322080.tar.gz cpython-0bcbfa43d55d9558cdcb256d8998366281322080.tar.bz2 |
bpo-28009: Fix uuid.uuid1() and uuid.get_node() on AIX (GH-8672)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-08-04-12-26-11.bpo-28009.4JcHZb.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-08-04-12-26-11.bpo-28009.4JcHZb.rst b/Misc/NEWS.d/next/Library/2018-08-04-12-26-11.bpo-28009.4JcHZb.rst new file mode 100644 index 0000000..40f6382 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-08-04-12-26-11.bpo-28009.4JcHZb.rst @@ -0,0 +1,4 @@ +Fix uuid.getnode() on platforms with '.' as MAC Addr delimiter as well +fix for MAC Addr format that omits a leading 0 in MAC Addr values. +Currently, AIX is the only know platform with these settings. +Patch by Michael Felt. |