Author: Manuel Jacob <[email protected]>
Branch: py3.5
Changeset: r89355:42f98dcdd48f
Date: 2017-01-04 02:02 +0100
http://bitbucket.org/pypy/pypy/changeset/42f98dcdd48f/

Log:    Add newutf8 to fake objspace.

diff --git a/pypy/objspace/fake/objspace.py b/pypy/objspace/fake/objspace.py
--- a/pypy/objspace/fake/objspace.py
+++ b/pypy/objspace/fake/objspace.py
@@ -209,6 +209,9 @@
     def newunicode(self, x):
         return w_some_obj()
 
+    def newutf8(self, x):
+        return w_some_obj()
+
     @specialize.argtype(1)
     def wrap(self, x):
         if not we_are_translated():
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to