summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-08-10 01:01:28 (GMT)
committerGuido van Rossum <guido@python.org>2007-08-10 01:01:28 (GMT)
commit283f3ffc246c53d6e265103e5bfb04ee08845d28 (patch)
tree76ec14161e503895bade31825e3673a23a027cf7
parent11019804f6821a1804c9f2b731f19da0cb806d08 (diff)
downloadcpython-283f3ffc246c53d6e265103e5bfb04ee08845d28.zip
cpython-283f3ffc246c53d6e265103e5bfb04ee08845d28.tar.gz
cpython-283f3ffc246c53d6e265103e5bfb04ee08845d28.tar.bz2
Remove spurious (and unneeded) import of StringIO.
-rw-r--r--Lib/ctypes/test/test_loading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py
index 256cdf9..fa2b7e2 100644
--- a/Lib/ctypes/test/test_loading.py
+++ b/Lib/ctypes/test/test_loading.py
@@ -1,6 +1,6 @@
from ctypes import *
import sys, unittest
-import os, StringIO
+import os
from ctypes.util import find_library
from ctypes.test import is_resource_enabled