Author: Manuel Jacob <m...@manueljacob.de>
Branch: py3k
Changeset: r83800:40c11f7ad71a
Date: 2016-04-20 23:44 +0200
http://bitbucket.org/pypy/pypy/changeset/40c11f7ad71a/

Log:    2to3

diff --git a/pypy/module/__pypy__/test/test_magic.py 
b/pypy/module/__pypy__/test/test_magic.py
--- a/pypy/module/__pypy__/test/test_magic.py
+++ b/pypy/module/__pypy__/test/test_magic.py
@@ -56,7 +56,7 @@
         from __pypy__ import _promote
         assert _promote(1) == 1
         assert _promote(1.1) == 1.1
-        assert _promote("abc") == "abc"
+        assert _promote(b"abc") == b"abc"
         raises(TypeError, _promote, u"abc")
         l = []
         assert _promote(l) is l
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to