Hi Flavio, Maybe I didn't get the problem. I would just hit Enter.
>>> a = 123 + b Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'b' is not defined Then, Define b. >>> b = 5 Finally: 2x arrow up to get the first input line. >>> a = 123 + b Greetings Markus 2013/5/2 Flavio Fontana <[email protected]> > Hi there > > I'm new to spyder and I have a problem interrupting typing in the konsole. > I have an Python Konsole open in spyder then i start typing: > >>> a = 123 +b > while typing I remember that b is not defined. So id like to > break/interrupt what im typing. In Matlab im used to do this with ctrl+c > Here in spyder on ubuntu it does not work. Any suggestions? > > Thanks > > > -- > You received this message because you are subscribed to the Google Groups > "spyder" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/spyderlib?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/spyderlib?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
