Message2268

Author cduffy
Recipients
Date 2002-10-28.19:25:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
the following code causes pdb to Work For Me, and
resolves bug 625364.

---
jython-2.1.0.orig/org/python/util/InteractiveInterpreter.java
+++
jython-2.1.0/org/python/util/InteractiveInterpreter.java
@@ -96,7 +96,8 @@
     public void showexception(PyException exc) {
         // Should probably add code to handle skipping
top stack frames
         // somehow...
-        write(exc.toString());
+       Py.printException(exc, null, null);
+        //write(exc.toString());
     }
 
     public void write(String data) {
History
Date User Action Args
2008-02-20 17:18:20adminlinkissue630057 messages
2008-02-20 17:18:20admincreate