Closed
Bug 504133
Opened 16 years ago
Closed 16 years ago
dependparser.py uses deprecated sets module
Categories
(Tamarin Graveyard :: Build Config, defect)
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 510038
People
(Reporter: chris, Unassigned)
Details
Attachments
(1 file)
709 bytes,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.11) Gecko/2009060309 Ubuntu/9.04 (jaunty) Firefox/3.0.11
Build Identifier:
The sets module has been deprecated in python-2.6. Building Tamarin with a recent python installation generates deprecation warnings.
Reproducible: Always
Steps to Reproduce:
If python2.6 is installed by default then simply running make will generate the warnings, otherwise:
make PYTHON=/usr/bin/python2.6
Actual Results:
Compiling core/AbcParser
/opt/tamarin/tamarin-redux/build/dependparser.py:45: DeprecationWarning: the sets module is deprecated
from sets import Set
Compiling core/ActionBlockConstants
...
Expected Results:
Compiling core/AbcParser
Compiling core/ActionBlockConstants
...
There's a simple backwards compatible patch that works with python2.5 and python2.6
Reporter | ||
Comment 1•16 years ago
|
||
Reporter | ||
Updated•16 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•