Message904
In Py.getStackTrace, there is an attempt to cut off the
stack trace before it gets into the Jython classes, but
somewhere along the line a method named 'call' was
changed to '__call__' but this was not changed inside
getStackTrace. For example, the line
if (index == -1)
index = str.indexOf(
"at
org.python.core.PyReflectedConstructor.call");
should really be
if (index == -1)
index = str.indexOf(
"at
org.python.core.PyReflectedConstructor.__call__");
I have tried making this change and it works.
|
|
Date |
User |
Action |
Args |
2008-02-20 17:17:18 | admin | link | issue979157 messages |
2008-02-20 17:17:18 | admin | create | |
|