2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 18:52:26 +00:00

Remove .def of __eq__, since find and count now implemented as C++ functions

[SVN r1566]
This commit is contained in:
Raoul Gough
2003-09-18 17:49:27 +00:00
parent 1a33896b71
commit b8dd3b324a

View File

@@ -30,7 +30,6 @@ BOOST_PYTHON_MODULE(vector_indexing_suite_ext)
.def(init<X>())
.def(init<std::string>())
.def("__repr__", &X::repr)
.def("__eq__", &X::operator==)
.def("reset", &X::reset)
.def("foo", &X::foo)
;