Skip to content

Commit 84caa50

Browse files
committed
Add test_ctypes from CPython 3.11
1 parent 59b191c commit 84caa50

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Lib/test/test_ctypes.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import unittest
2+
from test.support.import_helper import import_module
3+
4+
5+
ctypes_test = import_module('ctypes.test')
6+
7+
load_tests = ctypes_test.load_tests
8+
9+
if __name__ == "__main__":
10+
unittest.main()

0 commit comments

Comments
 (0)