[IPython-user] IPython 0.7.0 is out.
Sean Moore
smm at ibl.bm
Tue Jan 10 08:21:07 CST 2006
Fernando,
the patch / correction I sent you for pygtk on windows threaded coded didn't
make it into the release:
in Shell.py line 626 (sorry - don't have patch) You have:
if self.gtk.pygtk_version >= (2,4,0):
import gobject
gobject.timeout_add(self.TIMEOUT, self.on_timer)
else:
self.gtk.timeout_add(self.TIMEOUT, self.on_timer)
but I have this:
if self.gtk.pygtk_version >= (2,4,0):
import gobject
gobject.idle_add(self.on_timer)
else:
self.gtk.idle_add(self.on_timer)
cheers,
Sean
More information about the IPython-user
mailing list