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 alex.henrie
Recipients alex.henrie
Date 2020-01-30.01:43:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580348632.36.0.607657173065.issue39494@roundup.psfhosted.org>
In-reply-to
Content
Modules/_sqlite/cursor.c currently has the following variable declaration:

    static char *kwlist[] = {"size", NULL, NULL};

The second null terminator is unnecessary and detrimental in that it makes the code harder to read and understand.

Modules/_sqlite/module.c has two additional kwlist variables with the same problem.
History
Date User Action Args
2020-01-30 01:43:52alex.henriesetrecipients: + alex.henrie
2020-01-30 01:43:52alex.henriesetmessageid: <1580348632.36.0.607657173065.issue39494@roundup.psfhosted.org>
2020-01-30 01:43:52alex.henrielinkissue39494 messages
2020-01-30 01:43:52alex.henriecreate