From 9137b38fb958f86f97ba75a27e92e911fd1ab5d2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 5 Apr 2002 05:11:10 +0000 Subject: [PATCH] module name bug fix [SVN r13374] --- test/bienstman2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bienstman2.cpp b/test/bienstman2.cpp index ecb2158b..b2ef1957 100644 --- a/test/bienstman2.cpp +++ b/test/bienstman2.cpp @@ -11,11 +11,11 @@ struct E const D fe2(const C&, const C&) {return D();} }; -BOOST_PYTHON_MODULE_INIT(m) +BOOST_PYTHON_MODULE_INIT(bienstman2_ext) { using namespace boost::python; - module m("m"); + module m("bienstman2_ext"); m .add(class_("C"))