[Pydev-users] [pydev - Users] RE: display variable values
Brought to you by:
fabioz
From: SourceForge.net <no...@so...> - 2006-04-28 10:40:36
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3705505 By: fabioz Well, if it is a huge string, the debugger will not get it completely because this could crash Eclipse (really). So, if you're using the extensions, you can just use the console to print that variable to you and if not, well, you'll need to print that string to some file to be able to see it -- you can do that by adding a watch expression as: open('c:/temp/test.txt', 'w').write('foo') and removing it just after you got the results in that file. 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 |