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 qigangxu
Recipients ezio.melotti, qigangxu, vstinner
Date 2019-08-03.12:10:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1564834217.7.0.242563409504.issue37752@roundup.psfhosted.org>
In-reply-to
Content
In normalizestring(),
            ch = Py_TOLOWER(Py_CHARMASK(ch));
Where Py_TOLOWER is defined as following,
            #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)])

Redundant Py_CHARMASK called here.
History
Date User Action Args
2019-08-03 12:10:17qigangxusetrecipients: + qigangxu, vstinner, ezio.melotti
2019-08-03 12:10:17qigangxusetmessageid: <1564834217.7.0.242563409504.issue37752@roundup.psfhosted.org>
2019-08-03 12:10:17qigangxulinkissue37752 messages
2019-08-03 12:10:17qigangxucreate