summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/_eventloop/GlibEventLoop.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-02-16 12:56:50 -0800
committerZac Medico <zmedico@gentoo.org>2012-02-16 12:59:17 -0800
commit0166ba48b976f7e7262f59df0b3d0b499d0f2a63 (patch)
treedf9aecbb35895d529a72cc71ba484f80dff9c9d3 /pym/portage/util/_eventloop/GlibEventLoop.py
parentdec82cb8c449e833e4b9934d56927c2ba682b0d9 (diff)
downloadportage-0166ba48b976f7e7262f59df0b3d0b499d0f2a63.tar.gz
portage-0166ba48b976f7e7262f59df0b3d0b499d0f2a63.tar.bz2
portage-0166ba48b976f7e7262f59df0b3d0b499d0f2a63.zip
EventLoop: implement child_watch_add
Diffstat (limited to 'pym/portage/util/_eventloop/GlibEventLoop.py')
-rw-r--r--pym/portage/util/_eventloop/GlibEventLoop.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/util/_eventloop/GlibEventLoop.py b/pym/portage/util/_eventloop/GlibEventLoop.py
index 0d33175ea..f2f5c5e64 100644
--- a/pym/portage/util/_eventloop/GlibEventLoop.py
+++ b/pym/portage/util/_eventloop/GlibEventLoop.py
@@ -16,6 +16,7 @@ class GlibEventLoop(object):
self.IO_OUT = glib.IO_OUT
self.IO_PRI = glib.IO_PRI
self.iteration = glib.main_context_default().iteration
+ self.child_watch_add = glib.child_watch_add
self.idle_add = glib.idle_add
self.io_add_watch = glib.io_add_watch
self.timeout_add = glib.timeout_add