A few breaking changes for consistency just before the 1.0 release

1. Renamed PYTHON_* to PYBIND_* everywhere

2. Renamed pybind::array_dtype<> to pybind::array_t<>
This commit is contained in:
Wenzel Jakob
2015-10-13 17:38:22 +02:00
parent 19208fe9a4
commit b50872acf2
4 changed files with 22 additions and 22 deletions

View File

@@ -22,7 +22,7 @@ void init_ex10(py::module &);
void init_ex11(py::module &);
void init_ex12(py::module &);
PYTHON_PLUGIN(example) {
PYBIND_PLUGIN(example) {
py::module m("example", "pybind example plugin");
init_ex1(m);