From 62f6bc7ea07cc7240cfc67daf51d2737e7cd514b Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 14 Jul 2008 21:35:17 +0000 Subject: Bug 504337 - crash bug in gobject.Timeout and gobject.Idle 2008-07-14 Johan Dahlin Bug 504337 - crash bug in gobject.Timeout and gobject.Idle * gobject/pygsource.c: * tests/test_source.py: Fix crash in Timeout and Idle, patch by Bryan Silverthorn. svn path=/trunk/; revision=799 --- tests/test_source.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/test_source.py') diff --git a/tests/test_source.py b/tests/test_source.py index fd5f310..8e7e81c 100644 --- a/tests/test_source.py +++ b/tests/test_source.py @@ -90,5 +90,12 @@ class TestSource(unittest.TestCase): assert dispatched[0] + +class TestTimeout(unittest.TestCase): + def test504337(self): + timeout_source = gobject.Timeout(20) + idle_source = gobject.Idle() + + if __name__ == '__main__': unittest.main() -- cgit