Author: Matti Picus <[email protected]>
Branch: py3.5
Changeset: r94722:27800b9efa30
Date: 2018-06-03 13:53 -0700
http://bitbucket.org/pypy/pypy/changeset/27800b9efa30/

Log:    rename for backward compatibility

diff --git a/pypy/objspace/std/marshal_impl.py 
b/pypy/objspace/std/marshal_impl.py
--- a/pypy/objspace/std/marshal_impl.py
+++ b/pypy/objspace/std/marshal_impl.py
@@ -456,9 +456,9 @@
     return space.newunicode(uc)
 
 @unmarshaller(TYPE_INTERNED)
-def unmarshal_bytes(space, u, tc):
-    w_u = unmarshal_unicode(space, u, tc)
-    return u.space.new_interned_w_str(w_u)
+def unmarshal_interned(space, u, tc):
+    w_ret = unmarshal_unicode(space, u, tc)
+    return u.space.new_interned_w_str(w_ret)
 
 def _unmarshal_ascii(u, short_length, interned):
     if short_length:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to