我在使用SublimeCodeIntel和Python时遇到了一些麻烦。例如:
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.set_title("Mega Connector")
self.window.connect("delete_event", self.delete_event)
self.window.connect("destroy", self.destroy)
self.window.set_border_width(10)
self.window.
当SublimeCodeIntel试图找出哪些函数可以应用于该对象时,它会将此返回给我:could not find data for Python blob 'gtk'
它对我试图使用它的每一个功能也一样。
我正在使用Python2.7和import gtk
实际上我的代码工作正常,但自动完成似乎不起作用。我不知道为什么,有人能解释我为什么吗?