enthought / comtypes

A pure Python, lightweight COM client and server framework, based on the ctypes Python FFI package.
Other
283 stars 96 forks source link

fix importing `_DispMemberSpec` in `automation` #561

Closed junkmd closed 4 weeks ago

junkmd commented 4 weeks ago

In automation, comtypes._DispMemberSpec is referencing a private symbol across modules. Such a way of referencing is undesirable, but it must be accepted if it relates to runtime behavior. However, comtypes._DispMemberSpec used in automation was only used for type hints, so it will be fixed here.