-
-
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
_type_
class attributes in ctypes
, and fix ctypes.wintypes.BYTE
#13777
base: main
Are you sure you want to change the base?
Conversation
Another advantage: stubtest is now able to recognize that |
This comment has been minimized.
This comment has been minimized.
aea1c91
to
2d8ddcb
Compare
_type_
class attributes in ctypes
_type_
class attributes in ctypes
, and fix ctypes.wintypes.BYTE
This comment has been minimized.
This comment has been minimized.
2d8ddcb
to
07f9279
Compare
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a merge conflict now, but apart from that LGTM – for my limited ctypes experience.
07f9279
to
ff1eadf
Compare
@seberg you're pretty C-savvy; does this look right to you? |
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Would it make sense for these to be |
Good question. I guess that partially depends on whether mixed |
This adds the
_type_
class attributes to the relevant types ofctypes
. It makes the individualc_*
types structurally distinguishable. For the integer and floating C types, the C99 standard is assumed: https://en.cppreference.com/w/c/language/arithmetic_types#Integer_types as referenceBut why?
A
Protocol
can now be used to e.g. only accept C types could have_type_ == "l"
, i.e. signed integers of at least 32 bits on 32- and 64-bits systems. This will matchc_int
,c_long
,c_longlong
,c_int32
,c_int64
,c_time_t
,c_ssize_t
, and on windows alsoHRESULT
. The alternative would be to use a platform-specific union of these 7 or 8 types, which would be rather messy and verbose.Also, because stubs are often used as form of documentation (or maybe that's just me), this will also help in that sense.