pybind11 icon indicating copy to clipboard operation
pybind11 copied to clipboard

Seamless operability between C++11 and Python

Results 368 pybind11 issues
Sort by recently updated
recently updated
newest added

## Description Compared with using `py::buffer` to provide processing `py::numpy_scalar` is more concise and easier to use. I think PR #2060 is a very good solution, but it seems to...

Description --- This is a attempt to allow access to a Python derived class instance from C++ constructor. At this time, the constructor is called before allocation and registration so...

### 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...

triage

### 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...

enhancement
help wanted

I have a workaround to create classmethods in PyBind. ``` template pybind11::object classmethod(Func f, Args ... args) { pybind11::object cf = pybind11::cpp_function(f, args...); return pybind11::object(PyClassMethod_New(cf.ptr()), true); } ``` used like...

enhancement

### 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...

triage

## Description WIP / experiments ## Suggested changelog entry: ```rst ```

python dev

### 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...

triage
regression

Known regressions https://github.com/pybind/pybind11/labels/regression : - #4117 - #4105 - https://github.com/pybind/scikit_build_example/pull/45 Failed fixes: - #4123 Planned features: - #4077 Planned fixes: - #4119 - #4115 The next release of PyPy will...

### 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...

triage