|
From: Chris A. <at...@nm...> - 2001-01-22 15:55:39
|
I am running the 2.0 release of jython on hpux11.0 with jdk1.2.2.07
I start up my jvm with the following flag on the command line:
-Dpython.security.respectJavaAccessibility=0
or with
-Dpython.security.respectJavaAccessibility=false
in either case, when I have a call such as the following:
foo.toPrintString(obj, " ", "name")
in my python code and the following definition for the java class foo,
class foo extends foobase
{
protected String toPrintString(Object obj,
String initialIndent, String name)
}
I get the following error in jython:
TypeError: toPrintString(): expected 0-2 args; got 3
Is this broken, or how do I now specify to ignore java security.
When I go back to using jython1.1, the above worked fine.
Thanks,
Chris Atkins
|