Author: Wim Lavrijsen <[email protected]>
Branch: cppyy-packaging
Changeset: r94405:55cdebafb2de
Date: 2018-04-20 17:15 -0700
http://bitbucket.org/pypy/pypy/changeset/55cdebafb2de/
Log: translator fix
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
@@ -848,7 +848,7 @@
alldir = capi.c_get_all_cpp_names(self.space, self)
w_alldir = self.space.newlist([])
for name in alldir:
- w_alldir.append(self.space.wrap(name))
+ w_alldir.append(self.space.newtext(name))
return w_alldir
def missing_attribute_error(self, name):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit