Author: Wim Lavrijsen <wlavrij...@lbl.gov> Branch: cppyy-packaging Changeset: r92593:90cbc419e451 Date: 2017-10-02 22:48 -0700 http://bitbucket.org/pypy/pypy/changeset/90cbc419e451/
Log: fix typo diff --git a/pypy/module/_cppyy/interp_cppyy.py b/pypy/module/_cppyy/interp_cppyy.py --- a/pypy/module/_cppyy/interp_cppyy.py +++ b/pypy/module/_cppyy/interp_cppyy.py @@ -79,7 +79,7 @@ if capi.c_is_namespace(space, opaque_handle): cppscope = W_CPPNamespaceDecl(space, final_name, opaque_handle) elif capi.c_has_complex_hierarchy(space, opaque_handle): - cppscope = W_CPPComplexClass(space, final_name, opaque_handle) + cppscope = W_CPPComplexClassDecl(space, final_name, opaque_handle) else: cppscope = W_CPPClassDecl(space, final_name, opaque_handle) state.cppscope_cache[name] = cppscope _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit