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: setup.py contains needless references to built-in _weakref module
Type: Stage:
Components: Build Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: Arfrever, brett.cannon, georg.brandl
Priority: normal Keywords:

Created on 2010-09-13 19:31 by Arfrever, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg116343 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2010-09-13 19:31
_weakref module is a built-in module in Python 3 since r58602, but references to _weakref module in setup.py haven't been removed. They can be removed in py3k and 3.1 branches.

setup.py in 2.7 branch (since r84233) contains unused, commented out reference to _weakref module, which also can be removed.
msg116418 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2010-09-14 19:42
Fixed in r84819 for 3.2. No point in backporting since it doesn't hurt anything.

Thanks for the report!
History
Date User Action Args
2022-04-11 14:57:06adminsetgithub: 54057
2010-09-14 19:42:10brett.cannonsetstatus: open -> closed

nosy: + brett.cannon
messages: + msg116418

assignee: brett.cannon
resolution: fixed
2010-09-13 19:31:46Arfrevercreate