Message12606

Author jeff.allen
Recipients jeff.allen
Date 2019-07-21.19:22:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563736929.67.0.636271800895.issue2703@roundup.psfhosted.org>
In-reply-to
Content
With a small fix to the renaming in build.xml, the effect in the installed environment is that it now complains about the right (unmodified) class name:

PS 272a1> jython -c "from org.python.util import JycompileAntTask"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
java.lang.NoClassDefFoundError: org/apache/tools/ant/taskdefs/MatchingTask

and this may (now) be quieted by giving it ant.jar:

PS 272a1> $env:CLASSPATH="dist\jython-dev.jar;dist\javalib\*;C:\Program Files\ant\lib\ant.jar;."
PS 272a1> jython -c "from org.python.util import JycompileAntTask"

I now claim this is fixed at: https://hg.python.org/jython/rev/a19b28c28fe6
History
Date User Action Args
2019-07-21 19:22:09jeff.allensetmessageid: <1563736929.67.0.636271800895.issue2703@roundup.psfhosted.org>
2019-07-21 19:22:09jeff.allensetrecipients: + jeff.allen
2019-07-21 19:22:09jeff.allenlinkissue2703 messages
2019-07-21 19:22:09jeff.allencreate