summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-08-10 01:01:28 +0000
committerGuido van Rossum <guido@python.org>2007-08-10 01:01:28 +0000
commit283f3ffc246c53d6e265103e5bfb04ee08845d28 (patch)
tree76ec14161e503895bade31825e3673a23a027cf7 /Lib
parent11019804f6821a1804c9f2b731f19da0cb806d08 (diff)
downloadcpython-git-283f3ffc246c53d6e265103e5bfb04ee08845d28.tar.gz
Remove spurious (and unneeded) import of StringIO.
Diffstat (limited to 'Lib')
-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 256cdf9260..fa2b7e2a36 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