This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients barry, vstinner
Date 2020-03-17.15:12:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584457959.66.0.113191289918.issue39991@roundup.psfhosted.org>
In-reply-to
Content
It seems like this issue is a regression caused by the following change of bpo-28009:

commit 0bcbfa43d55d9558cdcb256d8998366281322080
Author: Michael Felt <aixtools@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:
History
Date User Action Args
2020-03-17 15:12:39vstinnersetrecipients: + vstinner, barry
2020-03-17 15:12:39vstinnersetmessageid: <1584457959.66.0.113191289918.issue39991@roundup.psfhosted.org>
2020-03-17 15:12:39vstinnerlinkissue39991 messages
2020-03-17 15:12:39vstinnercreate