STINNER Victor <vstin...@python.org> added the comment:

It seems like this issue is a regression caused by the following change of 
bpo-28009:

commit 0bcbfa43d55d9558cdcb256d8998366281322080
Author: Michael Felt <aixto...@users.noreply.github.com>
Date:   Thu Sep 26 20:43:15 2019 +0100

    bpo-28009: Fix uuid.uuid1() and uuid.get_node() on AIX (GH-8672)

which replaced:
    if len(word) == 17 and word.count(b':') == 5:
with:
    if len(word) == 17:

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue39991>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to