diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-12 20:43:13 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-12 20:43:13 -0400 |
commit | cb66fd479331b59b968fef133b3024c0101dd256 (patch) | |
tree | 29ea835473f40b668910172edf8eb6cf8088681e /tests/test_concurrency.py | |
parent | e08eb5311de5f3264abbf19f970a4da855bc08fd (diff) | |
download | python-coveragepy-cb66fd479331b59b968fef133b3024c0101dd256.tar.gz |
gevent and eventlet are available on py3, so test them there
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 6baffc8..c6d750d 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -214,7 +214,7 @@ class ConcurrencyTest(CoverageTest): eventlet.sleep(.005) eventlet.sleep(.1) - print len(gts) + print(len(gts)) """ self.try_some_code(BUG_330, "eventlet", eventlet, "0\n") |