koapy.backend.kiwoom_open_api_w.core.KiwoomOpenApiWSignature
¶
Module Contents¶
Classes¶
A Signature object represents the overall signature of a function. |
|
A Signature object represents the overall signature of a function. |
|
A Signature object represents the overall signature of a function. |
Functions¶
|
|
|
|
|
Attributes¶
- class koapy.backend.kiwoom_open_api_w.core.KiwoomOpenApiWSignature.KiwoomOpenApiWSignature(name, parameters=None, return_annotation=Signature.empty, entry=None)[source]¶
Bases:
inspect.Signature
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself.
A Signature object has the following public attributes and methods:
- parametersOrderedDict
An ordered mapping of parameters’ names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in code.co_varnames).
- return_annotationobject
The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is set to Signature.empty.
- class koapy.backend.kiwoom_open_api_w.core.KiwoomOpenApiWSignature.KiwoomOpenApiWDispatchSignature(name, parameters=None, return_annotation=Signature.empty, entry=None)[source]¶
Bases:
KiwoomOpenApiWSignature
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself.
A Signature object has the following public attributes and methods:
- parametersOrderedDict
An ordered mapping of parameters’ names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in code.co_varnames).
- return_annotationobject
The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is set to Signature.empty.
- koapy.backend.kiwoom_open_api_w.core.KiwoomOpenApiWSignature.LoadDispatchSignatures(oleItems, clsId)[source]¶
- class koapy.backend.kiwoom_open_api_w.core.KiwoomOpenApiWSignature.KiwoomOpenApiWEventHandlerSignature(name, parameters=None, return_annotation=Signature.empty, entry=None)[source]¶
Bases:
KiwoomOpenApiWSignature
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself.
A Signature object has the following public attributes and methods:
- parametersOrderedDict
An ordered mapping of parameters’ names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in code.co_varnames).
- return_annotationobject
The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is set to Signature.empty.