[pypy-commit] pypy py3k: missing method on the dummy space

antocuni noreply at buildbot.pypy.org
Fri Aug 31 10:23:14 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r57046:965cbea52088
Date: 2012-08-31 10:21 +0200
http://bitbucket.org/pypy/pypy/changeset/965cbea52088/

Log:	missing method on the dummy space

diff --git a/pypy/interpreter/test/test_argument.py b/pypy/interpreter/test/test_argument.py
--- a/pypy/interpreter/test/test_argument.py
+++ b/pypy/interpreter/test/test_argument.py
@@ -107,6 +107,9 @@
     def unicode_w(self, s):
         return unicode(s)
 
+    def identifier_w(self, s):
+        return self.unicode_w(s).encode('utf-8')
+
     def len(self, x):
         return len(x)
 


More information about the pypy-commit mailing list