-
Notifications
You must be signed in to change notification settings - Fork 0
Home
cpatulea edited this page Sep 13, 2010
·
2 revisions
purepython-gobject implements a small part of glib/gobject in pure Python using pywin32.
purepython-gobject is meant to be interface-compatible with pygtk and to emulate the semantics of glib. In particular, purepython-gobject solves glib Bug 338943 – Multiple watches on the same socket.
Implemented APIs:
- gobject.io_add_watch
- gobject.idle_add
- gobject.timeout_add
- gobject.ctrlc_add (helper for Ctrl-C)
- gobject.source_remove
- gobject.MainLoop
glib/gobject native implementation:
glib/gmain.c glib/gwin32.c glib/giowin32.c