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.
1 parent 6424318 commit 0f9010cCopy full SHA for 0f9010c
graalpython/lib-graalpython/ctypes.py
@@ -37,3 +37,19 @@
37
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38
# SOFTWARE.
39
40
+# Taken from pypy
41
+class CDLL(object):
42
+ """An instance of this class represents a loaded dll/shared
43
+ library, exporting functions using the standard C calling
44
+ convention (named 'cdecl' on Windows).
45
+
46
+ The exported functions can be accessed as attributes, or by
47
+ indexing with the function name. Examples:
48
49
+ <obj>.qsort -> callable object
50
+ <obj>['qsort'] -> callable object
51
52
+ Calling the functions releases the Python GIL during the call and
53
+ reacquires it afterwards.
54
+ """
55
+ pass
0 commit comments