Author: Philip Jenvey <[email protected]>
Branch: py3k-fix-strategies
Changeset: r70759:9953e025bce7
Date: 2014-04-18 11:13 -0700
http://bitbucket.org/pypy/pypy/changeset/9953e025bce7/

Log:    we now need bytes_w too

diff --git a/pypy/objspace/std/test/test_dictmultiobject.py 
b/pypy/objspace/std/test/test_dictmultiobject.py
--- a/pypy/objspace/std/test/test_dictmultiobject.py
+++ b/pypy/objspace/std/test/test_dictmultiobject.py
@@ -1079,6 +1079,10 @@
         assert isinstance(string, str)
         return string
 
+    def bytes_w(self, string):
+        assert isinstance(string, str)
+        return string
+
     def unicode_w(self, string):
         assert isinstance(string, unicode)
         return string
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to