pybind11
pybind11 copied to clipboard
Seamless operability between C++11 and Python
## Description This change fixes 9 failing targets discovered via Google-internal global testing with added `PyGILState_Check()` `assert`s in `Py_INCREF()` and `Py_DECREF()` (diff below). **TODO: Reduce failing tests and add as...
### Required prerequisites - [X] Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there. - [X] Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't...
## Description Should fix https://github.com/pybind/scikit_build_example/pull/45. ## Suggested changelog entry: ```rst * Fix regression with PyPy + classic FindPythonInterp ```
### Required prerequisites - [X] Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there. - [X] Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't...
## Issue description The bindings for a function that worked in pybind11 2.2.4 does not compile anymore in pybind11 2.3.0. The function contains a lot of arguments with Eigen arrays....
Thanks for maintaining this project. I love it. When I compile the ode below, mainly involved with the use of Eigen+Pybind11 I have unexpected compilation warnings appearing: ```cpp #include #include...
EDIT(eric): Deleted template text in body. Title describes issue sufficiently. For reference: [PEP 435](https://www.python.org/dev/peps/pep-0435/) EDIT 2 (eric): See #253 per Ashley's mention.
### Required prerequisites - [X] Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there. - [X] Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't...
Hi, I've got a package that uses pybind11 (it's awesome, by the way), and had a few users report the following crash. I've been able to reproduce it myself as...
## Reproducible example code Standalone setup is provided here : https://gist.github.com/abidrahmank/1ec549e13f600cd11eb70561c9223210 Just call `make` ## Issue description I have following workflow : * I have a C library (**crashloader.cpp**) which...