[pypy-commit] pypy cppyy-packaging: fix typos

wlav pypy.commits at gmail.com
Fri Jul 13 02:16:45 EDT 2018


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
Branch: cppyy-packaging
Changeset: r94853:63e440d921c8
Date: 2018-07-12 07:46 -0700
http://bitbucket.org/pypy/pypy/changeset/63e440d921c8/

Log:	fix typos

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
@@ -687,8 +687,8 @@
 
 W_CPPAbstractConstructorOverload.typedef = TypeDef(
     'CPPAbstractConstructorOverload',
-    __get__    = interp2app(W_CPPConstructorOverload.descr_get),
-    __call__   = interp2app(W_CPPConstructorOverload.call_args),
+    __get__    = interp2app(W_CPPAbstractConstructorOverload.descr_get),
+    __call__   = interp2app(W_CPPAbstractConstructorOverload.call_args),
 )
 
 


More information about the pypy-commit mailing list