Message9185

Author stefan.richthofer
Recipients fwierzbicki, stefan.richthofer, yyamano, zyasoft
Date 2014-10-30.01:34:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414632841.41.0.949139416415.issue1708@psf.upfronthosting.co.za>
In-reply-to
Content
This fix has a typos at least in lines
1068, 1069 of PyJavaType.java, which prevent building.
The erroneous lines spell
PyObject mapping =
if (!Py.isInstance(other, ))

build process now prints:

src/org/python/core/PyJavaType.java:1069: error: illegal start of expression
    [javac]                     if (!Py.isInstance(other, ))
    [javac]                     ^
    [javac] /src/org/python/core/PyJavaType.java:1069: error: illegal start of expression
    [javac]                     if (!Py.isInstance(other, ))
    [javac]                                               ^
    [javac] /src/org/python/core/PyJavaType.java:1069: error: not a statement
    [javac]                     if (!Py.isInstance(other, ))
    [javac]                        ^
    [javac] /src/org/python/core/PyJavaType.java:1069: error: ';' expected
    [javac]                     if (!Py.isInstance(other, ))
    [javac]                                                 ^
    [javac] 4 errors
History
Date User Action Args
2014-10-30 01:34:01stefan.richthofersetmessageid: <1414632841.41.0.949139416415.issue1708@psf.upfronthosting.co.za>
2014-10-30 01:34:01stefan.richthofersetrecipients: + stefan.richthofer, fwierzbicki, zyasoft, yyamano
2014-10-30 01:34:01stefan.richthoferlinkissue1708 messages
2014-10-30 01:34:00stefan.richthofercreate