Home
last modified time | relevance | path

Searched refs:cpp_module (Results 1 – 3 of 3) sorted by relevance

/external/python/pybind11/tests/test_embed/
Dtest_interpreter.cpp152 auto cpp_module = py::module_::import("widget_module"); variable
153 REQUIRE(cpp_module.attr("add")(1, 2).cast<int>() == 3);
/external/python/pybind11/docs/advanced/
Dembedding.rst181 import cpp_module
183 a = cpp_module.a
192 PYBIND11_EMBEDDED_MODULE(cpp_module, m) {
/external/python/pybind11/docs/
Dchangelog.rst818 from cpp_module import CppBase1, CppBase2