-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add stdlib/_ctypes
#8571
Comments
Feel free to make a pull request :) There's already lots of other Some thoughts:
|
Most of the stuff that we currently have in |
Thanks for your response.
I see. I will have to peruse the
There was a post on stack overflow about the lack of I will use
Each element of Searching
Therefore, |
Thanks for your response.
Regardless of the relationship at runtime, I will create I see that the Python 3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 19:00:18) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>> ctypes._Pointer
<class '_ctypes._Pointer'> But I don't want to make it perfect from the beginning, I want to make it my first priority to get out of the situation where |
Sounds good to me! |
You'll also need to add |
My projects use some COM-ffi packages.
I use
_ctypes.COMError
or_ctypes.CopyComPointer
too, but they are not defined in the type stub, somypy
type checker raisesCannot find implementation or library stub for module named "_ctypes"
error.I would like to add type stubs like this.
But other APIs are not clear to me.
if sys.platform == "win32":
needed.Any opinions would be appreciated.
The text was updated successfully, but these errors were encountered: