Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5651950
By: fabioz

Actually, that error happens because of the ';' (Semicolon) from the utf-8;
in the file you're trying to open, but that is just a report... Pydev should
recover gracefully from that.

The original problem you seem to be having is that the sys.settrace function
is being called from the code you want to debug. When a given code needs to
use the tracing facility (which is intended for debuggers) the debugger won't
work... So, you must either make the code stop using the settrace or if really
needed make it use pydevd_tracing.SetTrace (at which point your code will stop
being debugged) and then restore it later as specified at
http://pydev.blogspot.com/2007/06/why-cant-pydev-debugger-work-with.html.

Cheers,

Fabio

______________________________________________________________________
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

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to