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 serhiy.storchaka
Recipients aroberge, gvanrossum, lys.nikolaou, pablogsal, serhiy.storchaka
Date 2021-04-06.14:04:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617717866.36.0.16741720319.issue43748@roundup.psfhosted.org>
In-reply-to
Content
Not all "can't" in error messages were replaced by "cannot".

$ find Parser Python Objects Modules -name '*.[ch]' | xargs egrep '".*[Cc]an'\''t.*"' | wc -l
181
$ find Parser Python Objects Modules -name '*.[ch]' | xargs egrep '".*[Cc]annot.*"' | wc -l
247

$ find Lib -name '*.py' | xargs egrep '(["'\'']).*[Cc]an'\''t.*\1' | wc -l
239
$ find Lib -name '*.py' | xargs egrep '(["'\'']).*[Cc]annot.*\1' | wc -l
602

$ find Doc -name '*.rst' | xargs egrep '[Cc]an'\''t' | wc -l
180
$ find Doc -name '*.rst' | xargs egrep '[Cc]annot' | wc -l
482
History
Date User Action Args
2021-04-06 14:04:26serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, aroberge, lys.nikolaou, pablogsal
2021-04-06 14:04:26serhiy.storchakasetmessageid: <1617717866.36.0.16741720319.issue43748@roundup.psfhosted.org>
2021-04-06 14:04:26serhiy.storchakalinkissue43748 messages
2021-04-06 14:04:26serhiy.storchakacreate