We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Code:
from ctypes import c_voidp
Mypy runing as:
mypy --strict --ignore-missing-imports --follow-imports=silent
It reports:
Module 'ctypes' has no attribute 'c_voidp'
But 'c_voidp' in dir(ctypes) return True.
'c_voidp' in dir(ctypes)
True