summaryrefslogtreecommitdiffstats
path: root/tests/test_mainloop.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2006-04-11 14:11:09 +0000
committerJohan Dahlin <johan@src.gnome.org>2006-04-11 14:11:09 +0000
commitd775961664e4755481ef01c192ea8b8d27cf7567 (patch)
tree60beef30983edffbc29f74db19ef6163ee743f33 /tests/test_mainloop.py
parentbe8d076bbafd3bb5f26fa8716ff6e898b76b1d1a (diff)
downloadpygobject-d775961664e4755481ef01c192ea8b8d27cf7567.tar.gz
pygobject-d775961664e4755481ef01c192ea8b8d27cf7567.tar.xz
pygobject-d775961664e4755481ef01c192ea8b8d27cf7567.zip
reindent
Diffstat (limited to 'tests/test_mainloop.py')
-rw-r--r--tests/test_mainloop.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mainloop.py b/tests/test_mainloop.py
index 44d6937..8294642 100644
--- a/tests/test_mainloop.py
+++ b/tests/test_mainloop.py
@@ -22,7 +22,7 @@ class TestMainLoop(unittest.TestCase):
def child_died(pid, status, loop):
loop.quit()
raise Exception("deadbabe")
-
+
loop = gobject.MainLoop()
gobject.child_watch_add(pid, child_died, loop)
@@ -40,7 +40,7 @@ class TestMainLoop(unittest.TestCase):
loop.run()
except:
got_exception = True
-
+
#
# The exception should be handled (by printing it)
# immediately on return from child_died() rather