diff --git a/include/boost/python/module.hpp b/include/boost/python/module.hpp index a455ca41..9f5f4d21 100644 --- a/include/boost/python/module.hpp +++ b/include/boost/python/module.hpp @@ -90,8 +90,7 @@ class module : public detail::module_base // convert sig to a type_list (see detail::get_signature in signature.hpp) // before calling detail::define_with_defaults. detail::define_with_defaults( - name, stubs, default_call_policies(), - *this, detail::get_signature(sig), doc); + name, stubs, *this, detail::get_signature(sig)); } };