diff options
Diffstat (limited to 'tests/test_signals.py')
-rw-r--r-- | tests/test_signals.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_signals.py b/tests/test_signals.py index 2d6a65a..9771e40 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 |