Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r50085:832424e457be
Date: 2011-12-03 11:07 +0100
http://bitbucket.org/pypy/pypy/changeset/832424e457be/

Log:    Fix translation

diff --git a/pypy/objspace/std/stringobject.py 
b/pypy/objspace/std/stringobject.py
--- a/pypy/objspace/std/stringobject.py
+++ b/pypy/objspace/std/stringobject.py
@@ -326,7 +326,7 @@
 
     if 'Unicode' in funcname:
         def unwrap_sep(space, w_by):
-            return w_by.value
+            return w_by._value
     else:
         def unwrap_sep(space, w_by):
             return space.bufferstr_w(w_by)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to