Closed GoogleCodeExporter closed 9 years ago
Just to mention that the sets module has been deprecated since Python 2.6, and
the set() type should be used instead (see
http://docs.python.org/library/sets.html).
To make it work for both >= 2.6 and < 2.6 a simple usage test inside a
"try...except" in the beginning of the file is customary in Python.
Original comment by eliben
on 19 Nov 2010 at 9:20
Thanks for the report. Makefile script fixed in SVN revision 514.
We are unlikely to fix the deprecation warning, though. The try-catch fix will
make the code more complex while the benefit of it will be very small. Instead,
at some future point, we will re-assess our support for Python 2.3 and replace
the objects from the sets module with built-in sets.
Original comment by vladlosev
on 19 Nov 2010 at 8:13
Original issue reported on code.google.com by
eliben
on 19 Nov 2010 at 9:17