From b8dd3b324aaeb17e705c810210f320a5f1b8355e Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Thu, 18 Sep 2003 17:49:27 +0000 Subject: [PATCH] Remove .def of __eq__, since find and count now implemented as C++ functions [SVN r1566] --- .../boost/python/suite/indexing/vector_indexing_suite_ext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/boost/python/suite/indexing/vector_indexing_suite_ext.cpp b/include/boost/python/suite/indexing/vector_indexing_suite_ext.cpp index e44d34a8..7b435d4c 100755 --- a/include/boost/python/suite/indexing/vector_indexing_suite_ext.cpp +++ b/include/boost/python/suite/indexing/vector_indexing_suite_ext.cpp @@ -30,7 +30,6 @@ BOOST_PYTHON_MODULE(vector_indexing_suite_ext) .def(init()) .def(init()) .def("__repr__", &X::repr) - .def("__eq__", &X::operator==) .def("reset", &X::reset) .def("foo", &X::foo) ;