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.

Author marduk
Recipients amaury.forgeotdarc, benjamin.peterson, marduk
Date 2008-12-10.04:44:34
SpamBayes Score 3.6945545e-05
Marked as misclassified No
Message-id <1228884276.92.0.165718317441.issue4613@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for looking into this.

Ok... I applied your patch (actually it does not apply against Python
3.0 so I had to change it manually).

Now I'm not sure if this is still an error in the compiler or if it's
truly a problem on my end, but the line given in the error doesn't
contain a del statement at all.

The code basically looks like this:

def method(self):
    ...
                success = False
                e = None
                try:
                        success, mydepgraph, dropped_tasks =
resume_depgraph(
                                self.settings, self.trees,
self._mtimedb, self.myopts,
                                myparams, self._spinner,
skip_unsatisfied=True)
                except depgraph.UnsatisfiedResumeDep as e:
                        mydepgraph = e.depgraph
                        dropped_tasks = set()

With the patch, the error occurs at "dropped_tasks = set()" in the
except clause.  The first time that "dropped_tasks" is used in the
entire module is in the try clause.

This is a horrible piece of code (I did not write it).  Do you think the
SyntaxError message could be masking what the real error is?

Again, the python2 version of this module imports fine, but when I run
2to3 on it I get the SyntaxError.  The line of code in question,
however, is unmodified by 2to3.
History
Date User Action Args
2008-12-10 04:44:37marduksetrecipients: + marduk, amaury.forgeotdarc, benjamin.peterson
2008-12-10 04:44:36marduksetmessageid: <1228884276.92.0.165718317441.issue4613@psf.upfronthosting.co.za>
2008-12-10 04:44:36marduklinkissue4613 messages
2008-12-10 04:44:34mardukcreate