We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ctypes
1 parent 76ba29b commit 17853c3Copy full SHA for 17853c3
clang/bindings/python/clang/cindex.py
@@ -62,7 +62,24 @@
62
#
63
# o implement additional SourceLocation, SourceRange, and File methods.
64
65
-from ctypes import *
+from ctypes import (
66
+ Array,
67
+ CDLL,
68
+ CFUNCTYPE,
69
+ POINTER,
70
+ Structure,
71
+ byref,
72
+ c_char_p,
73
+ c_int,
74
+ c_longlong,
75
+ c_uint,
76
+ c_ulong,
77
+ c_ulonglong,
78
+ c_void_p,
79
+ cast,
80
+ cdll,
81
+ py_object,
82
+)
83
84
import os
85
import sys
0 commit comments