| Name |
Last commit
|
Last Update |
|---|---|---|
| .. | ||
| installed_embed | ||
| installed_function | ||
| installed_target | ||
| subdirectory_embed | ||
| subdirectory_function | ||
| subdirectory_target | ||
| embed.cpp | ||
| main.cpp | ||
| test.py |
This commit also adds `doc()` to `object_api` as a shortcut for the
`attr("__doc__")` accessor.
The module macro changes from:
```c++
PYBIND11_PLUGIN(example) {
pybind11::module m("example", "pybind11 example plugin");
m.def("add", [](int a, int b) { return a + b; });
return m.ptr();
}
```
to:
```c++
PYBIND11_MODULE(example, m) {
m.doc() = "pybind11 example plugin";
m.def("add", [](int a, int b) { return a + b; });
}
```
Using the old macro results in a deprecation warning. The warning
actually points to the `pybind11_init` function (since attributes
don't bind to macros), but the message should be quite clear:
"PYBIND11_PLUGIN is deprecated, use PYBIND11_MODULE".
| Name |
Last commit
|
Last Update |
|---|---|---|
| .. | ||
| installed_embed | Loading commit data... | |
| installed_function | Loading commit data... | |
| installed_target | Loading commit data... | |
| subdirectory_embed | Loading commit data... | |
| subdirectory_function | Loading commit data... | |
| subdirectory_target | Loading commit data... | |
| embed.cpp | Loading commit data... | |
| main.cpp | Loading commit data... | |
| test.py | Loading commit data... |