[pypy-commit] pypy space-newtext: fix

arigo pypy.commits at gmail.com
Mon Feb 13 09:41:15 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: space-newtext
Changeset: r90085:f50a640c6743
Date: 2017-02-13 15:40 +0100
http://bitbucket.org/pypy/pypy/changeset/f50a640c6743/

Log:	fix

diff --git a/pypy/tool/pytest/objspace.py b/pypy/tool/pytest/objspace.py
--- a/pypy/tool/pytest/objspace.py
+++ b/pypy/tool/pytest/objspace.py
@@ -72,6 +72,7 @@
         for name in ('int', 'long', 'str', 'unicode', 'None', 'ValueError',
                 'OverflowError'):
             setattr(self, 'w_' + name, eval(name))
+        self.w_bytes = bytes
         import __builtin__ as __builtin__
         self.builtin = __builtin__
 


More information about the pypy-commit mailing list