how can I disable the highlight function of wx.py.shell.shell?
and how can I not to display below text when it is displayed?
···
-----------------------------------------------------------------------------------------
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
-----------------------------------------------------------------------------------------
how can I disable the highlight function of wx.py.shell.shell?
and how can I not to display below text when it is displayed?
-----------------------------------------------------------------------------------------
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
-----------------------------------------------------------------------------------------
how can I disable the highlight function of wx.py.shell.shell?
What do you mean by highlight function?
and how can I not to display below text when it is displayed?
-----------------------------------------------------------------------------------------
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
-----------------------------------------------------------------------------------------
Derive a new class from wx.py.shell.Shell and override its showIntro method to behave the way you want it to.
Or it looks like you can pass showInterpIntro=False to the wx.py.shell.Shell constructor and it will pass it on to the Interpreter instance.
Reading the source of code you are using can often reveal very useful things, or at least help you to be able to use it better.