Class CDLL
object --+
|
CDLL
- Known Subclasses:
-
An instance of this class represents a loaded dll/shared library,
exporting functions using the standard C calling convention (named
'cdecl' on Windows).
The exported functions can be accessed as attributes, or by indexing
with the function name. Examples:
<obj>.qsort -> callable object <obj>['qsort'] ->
callable object
Calling the functions releases the Python GIL during the call and
reaquires it afterwards.
|
__init__(self,
name,
mode=0,
handle=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
|
__getitem__(self,
name_or_ordinal) |
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|
__init__(self,
name,
mode=0,
handle=None)
(Constructor)
|
|
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature
- Overrides:
object.__init__
- (inherited documentation)
|
__repr__(self)
(Representation operator)
|
|
repr(x)
- Overrides:
object.__repr__
- (inherited documentation)
|