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

That's a bug that's fixed in the latest subversion (to be released on 1.4.3)

You have to change 2 places:

pydevd_comm.py  (InternalGetVariable.doIt) 
and 
pydevd_vars.py (frameVarsToXML)

The actual code applied in the replace should be something like:

keys = frame.f_locals.keys()
if hasattr(keys, 'sort'):
....keys.sort() #Python 3.0 does not have it
else:
....keys = sorted(keys) #Jython 2.1 does not have it


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:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to