[pypy-commit] pypy py3k-fix-strategies: we now need bytes_w too

pjenvey noreply at buildbot.pypy.org
Fri Apr 18 20:14:16 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
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


More information about the pypy-commit mailing list