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

Type stubs for Python typing #68

Open
thisiscam opened this issue Oct 17, 2021 · 6 comments
Open

Type stubs for Python typing #68

thisiscam opened this issue Oct 17, 2021 · 6 comments

Comments

@thisiscam
Copy link
Contributor

Hi,

I would like to generate type stubs so that we can use type checking with islpy functions.

I'm thinking of extending gen_wrap to achieve this, but was also wondering if the maintainer has any good suggestions?

Also, it seems like the sphinx docs can already harvest the type signatures (from the generated c++ wrapper code?).

@inducer
Copy link
Owner

inducer commented Oct 17, 2021

I think the most reasonable thing to do would be to implement this via pybind, cf. pybind/pybind11#945. Pybind has all the information it needs, it just needs to make it visible to the interpreter. Even better, this would allow us to just drop the documentation-focused signature gathering code in gen_wrap.

@thisiscam
Copy link
Contributor Author

@inducer Thanks for the input! Yes I agree that fixing it at the pybind level would be very desirable.
However, I looked into pybind a bit and the level of unfamiliarity scared me.

Since I would really like to get the type checking to work ASAP, I did a quick implementation for typestub generation in gen_wrap: thisiscam@e14d71a.

I'm a bit stuck on how islpy is merging the .inc files into the final wrapper?
Currently, I have to manually concatenating the files then paste them next to islpy/__init__.py.

That being said, I was able to get pretty good result and my IDE can finally auto-complete islpy functions.

_isl.pyi.txt

@inducer
Copy link
Owner

inducer commented Oct 18, 2021

I'm a bit stuck on how islpy is merging the .inc files into the final wrapper?

They just get included, e.g. here:

#include "gen-wrap-part3.inc"

I did a quick implementation for typestub generation in gen_wrap:

I could probably be talked into merging this, if you think it's of sufficient quality. (It looks like it's got some debug leftovers in it currently, such as a breakpoint() in an exception handler.

Unfortunately, it looks like these stubs won't buy us much from the documentation angle, at least for now: sphinx-doc/sphinx#7630.

@inducer
Copy link
Owner

inducer commented Oct 18, 2021

Alternatively, is it possible to set .__annotations__ on the methods from the wrapper? (I haven't tried, but cls.attr("methodname").attr("__annotations__") = ... might work?)

@thisiscam
Copy link
Contributor Author

thisiscam commented Oct 19, 2021

I haven't tried, but cls.attr("methodname").attr("annotations") = ... might work?

I'm not really familiar with these annotation magics.
My intuition is that one would need to pass annotations as PyObjects here (instead of annotation strings)?

@thisiscam thisiscam mentioned this issue Oct 19, 2021
@inducer
Copy link
Owner

inducer commented Oct 20, 2021

pybind has py::object that wraps and makes C++ handling of PyObjects easier, e.g. py::make_tuple("a", "b", "c").

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

No branches or pull requests

2 participants