Replies: 1 comment
-
There's no known documented reason, it's probably fine |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Although
comtypes.gen
supports customizinggen_dir
to change the directory for the generated wrapper modules, the generated modules themselves still import fromcomtypes.gen
, which can cause some trouble for static type checkers, as the modules are not actually incomtypes.gen
.NVDA tries to address this issue by modifying the
comtypes
generated code, but this can break whencomtypes
changes the generated code again.I asked the
comtypes
folks about it, and they said that most people already use the defaultcomtypes/gen
path without problems.So why did NVDA choose its own path? What's the advantage of it, despite requiring some hacks to make it work?
Beta Was this translation helpful? Give feedback.
All reactions