diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-06 17:37:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-06 17:37:16 (GMT) |
commit | 6fbeae406e37e850345f3d7f5435a0236050c188 (patch) | |
tree | 33c8946f90d349e53920a3bc8f63a64caf509c2b /Lib | |
parent | 43b842775fc9be203754f1dceb39607f28e06256 (diff) | |
download | cpython-6fbeae406e37e850345f3d7f5435a0236050c188.zip cpython-6fbeae406e37e850345f3d7f5435a0236050c188.tar.gz cpython-6fbeae406e37e850345f3d7f5435a0236050c188.tar.bz2 |
Issue #22977: Remove unconditional import of ctypes.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_exceptions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index a7f19cb..80d4f1a 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -6,7 +6,6 @@ import unittest import pickle import weakref import errno -import ctypes from test.support import (TESTFN, captured_output, check_impl_detail, check_warnings, cpython_only, gc_collect, run_unittest, |