Message1658

Author cgroves
Recipients
Date 2007-06-27.04:55:23
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The syntax error is because the program is using the 'yield' keyword to make a generator, which didn't appear until Python 2.3.  It's available in Jython 2.2 but only if you add 'from __future__ import generators' as the first line of the file.  Just pop that in there and the syntax error will go away.
History
Date User Action Args
2008-02-20 17:17:51adminlinkissue1743933 messages
2008-02-20 17:17:51admincreate