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.

classification
Title: Fix some unused functions in test suite
Type: enhancement Stage: resolved
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: adamchainz, brett.cannon
Priority: normal Keywords:

Created on 2019-11-18 22:08 by adamchainz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 17189 merged adamchainz, 2019-11-18 22:08
Messages (2)
msg356919 - (view) Author: Adam Johnson (adamchainz) * Date: 2019-11-18 22:08
Whilst developing a new unused function check for flake8 ( https://github.com/PyCQA/pyflakes/pull/485 ) I ran it against the CPython source code and found some uncalled functions.
msg356986 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2019-11-19 19:45
New changeset 892221bfa04a41cf581f988ba19dc263f557e157 by Brett Cannon (Adam Johnson) in branch 'master':
bpo-38839: Fix some unused functions in tests (GH-17189)
https://github.com/python/cpython/commit/892221bfa04a41cf581f988ba19dc263f557e157
History
Date User Action Args
2022-04-11 14:59:23adminsetgithub: 83020
2019-11-19 19:46:02brett.cannonsetstatus: open -> closed
resolution: fixed
stage: resolved
2019-11-19 19:45:27brett.cannonsetnosy: + brett.cannon
messages: + msg356986
2019-11-19 19:44:55brett.cannonsettitle: Some unused functions in test suite -> Fix some unused functions in test suite
2019-11-18 22:08:25adamchainzcreate