From d7ff5a5375cc23dff10f91696ac4895971c5850c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 26 Dec 2014 21:16:42 +0100 Subject: asyncio: sync with Tulip * Fix pyflakes warnings: remove unused imports and variables * asyncio.test_support now uses test.support and test.script_helper if available --- Lib/test/test_asyncio/test_futures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_asyncio/test_futures.py') diff --git a/Lib/test/test_asyncio/test_futures.py b/Lib/test/test_asyncio/test_futures.py index f9c3ad2086..286370914d 100644 --- a/Lib/test/test_asyncio/test_futures.py +++ b/Lib/test/test_asyncio/test_futures.py @@ -10,7 +10,7 @@ from unittest import mock import asyncio from asyncio import test_utils try: - from test import support # gc_collect + from test import support except ImportError: from asyncio import test_support as support -- cgit v1.2.1