Author: Philip Jenvey <pjen...@underboss.org> Branch: py3k Changeset: r73194:a1d33cd5a124 Date: 2014-08-29 13:18 -0700 http://bitbucket.org/pypy/pypy/changeset/a1d33cd5a124/
Log: readapt to py3k diff --git a/pypy/interpreter/nestedscope.py b/pypy/interpreter/nestedscope.py --- a/pypy/interpreter/nestedscope.py +++ b/pypy/interpreter/nestedscope.py @@ -78,7 +78,7 @@ content = "%s object at 0x%s" % (space.type(self.w_value).name, self.w_value.getaddrstring(space)) s = "<cell at 0x%s: %s>" % (self.getaddrstring(space), content) - return space.wrap(s) + return space.wrap(s.decode('utf-8')) def descr__cell_contents(self, space): try: _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit