Message904

Author nobody
Recipients
Date 2004-06-24.18:43:34
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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.
History
Date User Action Args
2008-02-20 17:17:18adminlinkissue979157 messages
2008-02-20 17:17:18admincreate