Jonathan Thomas - 2008-10-27

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()