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 methane
Recipients Mark.Shannon, corona10, gvanrossum, methane
Date 2021-09-01.07:22:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630480959.61.0.0838117671677.issue45056@roundup.psfhosted.org>
In-reply-to
Content
I found anther example for unused constants.

The `readall()` function.
https://github.com/python/cpython/blob/863154c9292e70c5a8a1a3f22ef4ee42e2304281/Lib/_pyio.py#L663-L675

Python 3.9.5:
co_consts = ('Read until EOF, using multiple read() call.', None)
Python 3.10rc1:
co_consts = ('Read until EOF, using multiple read() call.', True, None)
History
Date User Action Args
2021-09-01 07:22:39methanesetrecipients: + methane, gvanrossum, Mark.Shannon, corona10
2021-09-01 07:22:39methanesetmessageid: <1630480959.61.0.0838117671677.issue45056@roundup.psfhosted.org>
2021-09-01 07:22:39methanelinkissue45056 messages
2021-09-01 07:22:39methanecreate