mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-19 14:29:11 +00:00
keyword argument support, removed last traces of std::function<> usage
This commit is contained in:
@@ -19,6 +19,7 @@ void init_ex7(py::module &);
|
||||
void init_ex8(py::module &);
|
||||
void init_ex9(py::module &);
|
||||
void init_ex10(py::module &);
|
||||
void init_ex11(py::module &);
|
||||
|
||||
PYTHON_PLUGIN(example) {
|
||||
py::module m("example", "pybind example plugin");
|
||||
@@ -33,6 +34,7 @@ PYTHON_PLUGIN(example) {
|
||||
init_ex8(m);
|
||||
init_ex9(m);
|
||||
init_ex10(m);
|
||||
init_ex11(m);
|
||||
|
||||
return m.ptr();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user