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 eric.snow, iritkatriel, serhiy.storchaka, vstinner
Date 2021-09-15.13:09:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631711376.58.0.0249445070898.issue44786@roundup.psfhosted.org>
In-reply-to
Content
The warning comes from this regex: Tools/c-analyzer/c_common/tables.py", line 236

_COLSPEC_RE = re.compile(textwrap.dedent(r'''
    ^
    (?:
        [[]
        (
            (?: [^\s\]] [^\]]* )?
            [^\s\]]
        )  # <label>
        []]
    )?
    ( \w+ )  # <field>
    (?:
        (?:
            :
            ( [<^>] )  # <align>
            ( \d+ )  # <width1>
        )
        |
        (?:
            (?:
                :
                ( \d+ )  # <width2>
            )?
            (?:
                :
                ( .*? )  # <fmt>
            )?
        )
    )?
    $
'''), re.VERBOSE)
History
Date User Action Args
2021-09-15 13:09:36vstinnersetrecipients: + vstinner, eric.snow, serhiy.storchaka, iritkatriel
2021-09-15 13:09:36vstinnersetmessageid: <1631711376.58.0.0249445070898.issue44786@roundup.psfhosted.org>
2021-09-15 13:09:36vstinnerlinkissue44786 messages
2021-09-15 13:09:36vstinnercreate