When I create a new instance I am not getting code completion for any of the arguments. For example I go:
panel1 = wx.Panel()
After I am type in the wx.Panel( I get no list of arguments.
I am using eclipse on the Mac, Lepoard.
Here is another example of the code completion not working, but for GTK:
import gtk
MyWindow = gtk.Window() MyWindow.set_title()
### The SET_TITLE method takes 1 parameter, the title of the window, but pydev doesn't seem to know about it.
MyWindow.show() gtk.main()
Here is another example of the code completion not working, but for GTK:
import gtk
MyWindow = gtk.Window()
MyWindow.set_title()
### The SET_TITLE method takes 1 parameter, the title of the window, but pydev doesn't seem to know about it.
MyWindow.show()
gtk.main()