MCPcopy Create free account
hub / github.com/enthought/comtypes / inv_kind

Method inv_kind

comtypes/tools/tlbparser.py:406–413  ·  view source on GitHub ↗
(self, invkind: int)

Source from the content-addressed store, hash-verified

404 return itf
405
406 def inv_kind(self, invkind: int) -> list[str]:
407 NAMES = {
408 automation.DISPATCH_METHOD: [],
409 automation.DISPATCH_PROPERTYPUT: ["propput"],
410 automation.DISPATCH_PROPERTYPUTREF: ["propputref"],
411 automation.DISPATCH_PROPERTYGET: ["propget"],
412 }
413 return NAMES[invkind]
414
415 def func_flags(self, flags: int) -> list[str]:
416 # map FUNCFLAGS values to idl attributes

Callers 2

ParseInterfaceMethod · 0.95
ParseDispatchMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected