Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=3932132
By: kovan
I looked at Pydev source a bit and it seems that in the file
org.python.pydev.debug.model.AbstractDebugTarget.java there is a regexp which
matches positive payloads, but not negative ones. This is the line:
static Pattern threadRunPattern = Pattern.compile("(\\d+)\\t(\\w*)");
I replaced the regexp with (-?\\d+)\\t(\\w*), so that it'd mach negative numbers
too, and now the Pydev debugger is showing newly created variables again :DD.
I have a patch just in case someone (or fabio) wants it.
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=293649
|