Hi, the Python shell window is not a terminal. It is built using a QScintilla widget. That's, why you see the raw escape code been print. Howver, you may start the debugger backend in a console. Just go to the configuration dialog, Debugger->General page and enable the option "Start debugger in console window" and give it a valid console command (e.g. konsole -e). You may override this setting on a per project basis using Project->Debugger->Debugger Properties and enabling the console debugger.
I hope, that helps to solve your issue. Regards, Detlev On Freitag, 6. Februar 2009, Christof Hanke wrote: > Hi, > > I try to write some python-dialog-stuff, but the > Shell-Window somehow prints out the Terminal-codes > (stuff like "<ESC>[23;") instead of actually applying it. > The shell itself claims to be of terminaltype "xterm". > > I haven't really found something useful in the settings about this. > (I am not saying it's not there, because 80% of the time Detlev just points > people to the correct place ;-) > > Or is it in general possible to run scripts in a real external Terminal > (xterm/Konsole/whatever) ? > > Many thanks, > > Christof > > _______________________________________________ > Eric mailing list > [email protected] > http://www.riverbankcomputing.com/mailman/listinfo/eric -- Detlev Offenbach [email protected] _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
