Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4538015 By: fabioz
Not currently... there's a bug for that already at: https://sourceforge.net/tracker/index.php?func=detail&aid=1788406&group_id=85796 &atid=577329 You can as workarounds use pydev extensions (where you can inspect things from the console using prints) or you can go to eclipse/plugins/org.python.pydev.debug/pysrc/pydevd_vars.py and change that limit manually (line 131: varToXml()): if len(value) > 200: ....value = value[0:200] ....value += '...' Just put a higher value there. Note that this could make your communication with the debugger somewhat slower (specially if you're dealing with large strings) and could lead to the bug related at: https://sourceforge.net/tracker/index.php?func=detail&aid=1788409&group_id=8 5796&atid=577329 (where variables dissapear because of the timeout specified to the debugger server). 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: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Pydev-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pydev-users
