-
Notifications
You must be signed in to change notification settings - Fork 54
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
Fix int_ and bool_ types #40
Comments
Which version of pybind11 do you use? At least |
IMO all C++ oddities in docstrings are due to bugs in pybind11/bindings code or both. Therefore fixing it afterwards here should be the last resort. I'm thinking about rewiring internals of the library to make it more customizable for such cancer cases where there is no (easy) way to fix C++ sources. |
I'm on
|
I don't think |
I discussed this somewhere before (can't recall where), but some signatures contain
int_
andbool_
(for respectively returningpy::int_
andpy::bool_
from the binding side). The only logical and valid signature types would beint
andbool
. I currently do a second pass to myself to convert these. Is it an idea to fix these here or do you recon it should be fixed on thepybind11
side ?The text was updated successfully, but these errors were encountered: