From 75f79b477e2da91d805dc138ae5f8f6d9e507da5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 23 Nov 2014 10:54:21 +0100 Subject: fix call_soon() when called on a closed loop --- tests/test_callback.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/test_callback.py b/tests/test_callback.py index 58f787b..fb29528 100644 --- a/tests/test_callback.py +++ b/tests/test_callback.py @@ -32,6 +32,16 @@ class CallbackTests(tests.TestCase): self.loop.run_forever() self.assertEqual(result, ["Hello", "World"]) + def test_close_soon(self): + def func(): + pass + + self.loop.close() + # FIXME: calling call_soon() on a closed event loop should raise an + # exception: + # http://bugs.python.org/issue22922 + self.loop.call_soon(func) + if __name__ == '__main__': import unittest -- cgit v1.2.1