Merged revisions 78093 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78093 | georg.brandl | 2010-02-07 18:03:15 +0100 (So, 07 Feb 2010) | 1 line

  Remove unused imports in test modules.
........
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index fe1a2b8..1b2d491 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -28,9 +28,8 @@
 import unittest
 import warnings
 import weakref
-import gc
 import abc
-from itertools import chain, cycle, count
+from itertools import cycle, count
 from collections import deque
 from test import support