I am still trying to solve my problems with %paste in Spyder. I had issue 778, which I then closed after a re-install, but the problem reappeared so I opened issue 829.
I am trying to implement the appended comment to help debug the problem. But I don't know how to view Spyder's parent console! I run "spyder --debug", then I go to View->Internal Console. I have the commentor's print >>>STDOUT lines included in Base.py. But I don't see anything. How to I run the parent console, what should I be seeing? Cheers, M """ Comment 5 by project member [email protected], Oct 8, 2011To help us debug this (unfortunately I can't reproduce this bug neither), try to add the lines: print >>STDOUT, "selectedText():", unicode(self.textCursor().selectedText()) print >>STDOUT, "get_line_separator():", self.get_line_separator() print >>STDOUT, "get_selected_text():", self.get_selected_text() right before this line (with the appropriate indentation): http://code.google.com/p/spyderlib/source/browse/spyderlib/widgets/sourcecode/base.py#608 You should see these informations printed in the Spyder's parent console (on Windows, this console may be hidden: running Spyder in debug mode will avoid that). """ -- You received this message because you are subscribed to the Google Groups "spyder" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/spyderlib?hl=en.
