Message2268
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) { |
|
| Date |
User |
Action |
Args |
| 2008-02-20 17:18:20 | admin | link | issue630057 messages |
| 2008-02-20 17:18:20 | admin | create | |
|