python 2.7 fix

This commit is contained in:
Wenzel Jakob
2015-09-05 02:09:17 +02:00
parent 570822102c
commit 5116b02e68
2 changed files with 6 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ const int Example2::value2 = 5;
void init_ex2(py::module &m) {
/* No constructor is explicitly defined below. An exception is raised when
trying to construct it directly from Python */
py::class_<Example2>(m, "Example2")
py::class_<Example2>(m, "Example2", "Example 2 documentation")
.def("get_dict", &Example2::get_dict, "Return a Python dictionary")
.def("get_dict_2", &Example2::get_dict_2, "Return a C++ dictionary")
.def("get_list", &Example2::get_list, "Return a Python list")