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: setuptools: avoid sets module for python>2.3
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: pje Nosy List: amitar, pje
Priority: normal Keywords: patch

Created on 2007-02-19 08:17 by amitar, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
frozenset_patch.diff amitar, 2007-02-19 08:17 use builtin frozenset instead of sets.ImmutableSet
Messages (2)
msg51895 - (view) Author: Amit Aronovitch (amitar) Date: 2007-02-19 08:17
In Python 2.6 usage of the sets module issues a warning.
patched to use builtin frozenset if version>=2.4
msg51896 - (view) Author: PJ Eby (pje) * (Python committer) Date: 2007-02-23 19:28
I've fixed the problem for setuptools 0.6c6, but did not use the attached patch, as it was incomplete and relies on Python version checking rather than Python feature checking.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44593
2007-02-19 08:17:30amitarcreate