Skip to content
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

make the type-parameter of ctypes.py_object optional #13760

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jorenham
Copy link
Contributor

@jorenham jorenham commented Apr 1, 2025

Type-checkers currently require a generic type argument for ctypes.py_object. But at runtime this can raise a TypeError if not quoted.
We can avoid this contradictory paradox that's sending conflicting mixed signals by setting the type-parameter default of ctypes.py_object to Any.

Copy link
Contributor

github-actions bot commented Apr 1, 2025

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

@brianschubert
Copy link
Contributor

But at runtime this can raise a TypeError if not quoted.

Which begs the question, should ctypes.py_object define __class_getitem__ at runtime, to mirror the stubs?

@jorenham
Copy link
Contributor Author

jorenham commented Apr 2, 2025

But at runtime this can raise a TypeError if not quoted.

Which begs the question, should ctypes.py_object define __class_getitem__ at runtime, to mirror the stubs?

Maybe? But even if that were to be changed in cpython, then that'd only fix it for 3.14+ or something. So I suppose that this would still be relevant

@brianschubert
Copy link
Contributor

It seems that there's very few instances of generic py_object being used in the wild, most of which are from numpy/optypes. Is it being generic actually useful? I wonder if it would make sense to specialize it to Any or object

@jorenham
Copy link
Contributor Author

jorenham commented Apr 2, 2025

It seems that there's very few instances of generic py_object being used in the wild, most of which are from numpy/optypes.

Well, I admit that this is mostly self-interest, haha.

Oh and it's optype btw ;)

@jorenham
Copy link
Contributor Author

jorenham commented Apr 2, 2025

Is it being generic actually useful? I wonder if it would make sense to specialize it to Any or object

Not at the moment, no. But once mypy fully supports __new__, then I can make numpy.object_ generic. And then it would help to also have a generic ctypes.py_object.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants