[pypy-commit] pypy py3.5-newtext: fix

arigo pypy.commits at gmail.com
Mon Feb 13 12:44:17 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5-newtext
Changeset: r90097:b6513a7b1305
Date: 2017-02-13 18:43 +0100
http://bitbucket.org/pypy/pypy/changeset/b6513a7b1305/

Log:	fix

diff --git a/pypy/objspace/std/kwargsdict.py b/pypy/objspace/std/kwargsdict.py
--- a/pypy/objspace/std/kwargsdict.py
+++ b/pypy/objspace/std/kwargsdict.py
@@ -31,7 +31,7 @@
         return _wrapkey(self.space, key)
 
     def unwrap(self, wrapped):
-        return self.space.str_w(wrapped)
+        return self.space.text_w(wrapped)
 
     def get_empty_storage(self):
         d = ([], [])


More information about the pypy-commit mailing list