From d841e82241a209573a1da638aa64921c7e65b811 Mon Sep 17 00:00:00 2001 From: jason kirtland Date: Thu, 23 Jul 2015 17:18:39 +0200 Subject: Adds Signal.send_async for asyncio --- tests/test_signals.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/test_signals.py') diff --git a/tests/test_signals.py b/tests/test_signals.py index a1172ed..e651465 100644 --- a/tests/test_signals.py +++ b/tests/test_signals.py @@ -10,6 +10,11 @@ from nose.tools import assert_raises jython = sys.platform.startswith('java') pypy = hasattr(sys, 'pypy_version_info') +try: + from _test_async import test_send_async +except (SyntaxError, ImportError): + pass + def collect_acyclic_refs(): # cpython releases these immediately without a collection -- cgit v1.2.1