diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-10-17 19:24:43 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-10-17 19:24:43 (GMT) |
commit | f88cad00877d4084a89ac7bdbd6d037e9b5d8b98 (patch) | |
tree | ecd5850dc74e1f145844ef7d42925ff359dd2d5a /Lib | |
parent | 459c36490f2a25b2b42ee5966e3cf4466bc15326 (diff) | |
parent | be16d68071623cdeea9611cf8debafe10bb409c0 (diff) | |
download | cpython-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.py | 5 |
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() |