summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-10-17 19:24:43 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-10-17 19:24:43 (GMT)
commitf88cad00877d4084a89ac7bdbd6d037e9b5d8b98 (patch)
treeecd5850dc74e1f145844ef7d42925ff359dd2d5a /Lib
parent459c36490f2a25b2b42ee5966e3cf4466bc15326 (diff)
parentbe16d68071623cdeea9611cf8debafe10bb409c0 (diff)
downloadcpython-f88cad00877d4084a89ac7bdbd6d037e9b5d8b98.zip
cpython-f88cad00877d4084a89ac7bdbd6d037e9b5d8b98.tar.gz
cpython-f88cad00877d4084a89ac7bdbd6d037e9b5d8b98.tar.bz2
Merge with 3.4
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ctypes.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/test_ctypes.py b/Lib/test/test_ctypes.py
index 53964ca..6826899 100644
--- a/Lib/test/test_ctypes.py
+++ b/Lib/test/test_ctypes.py
@@ -1,6 +1,9 @@
import unittest
+from test.support import import_module
-from ctypes.test import load_tests
+ctypes_test = import_module('ctypes.test')
+
+load_tests = ctypes_test.load_tests
if __name__ == "__main__":
unittest.main()