Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=3767809
By: nobody
To the best of my knowledge it is defined as a jython project. A chose to create
a new Pydev Project and then rightclicked the new project and chose "Pydev -
project type" and selected jython 2.1. I then created a new Pydev module in
the src directory of this new project and ran the code from the original post.
The problem seems to exist with just some static methods, for example the following
does not give any error messages at all:
from java.lang import String
s = String()
t = String()
print s.equals(t) # normal method
print String.valueOf(5) # static method
And yet the code in the original post does give error messages. Note that the
code still runs, it is just the error messages I'm curious about.
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=293649
|