Author: Manuel Jacob <m...@manueljacob.de>
Branch: py3k
Changeset: r79129:bff4896d8c5a
Date: 2015-08-22 03:01 +0200
http://bitbucket.org/pypy/pypy/changeset/bff4896d8c5a/

Log:    2to3

diff --git a/pypy/module/_vmprof/test/test__vmprof.py 
b/pypy/module/_vmprof/test/test__vmprof.py
--- a/pypy/module/_vmprof/test/test__vmprof.py
+++ b/pypy/module/_vmprof/test/test__vmprof.py
@@ -25,7 +25,7 @@
             assert s[i + 1] == 0    # 0
             assert s[i + 2] == 1    # VERSION_THREAD_ID
             assert s[i + 3] == 4    # len('pypy')
-            assert s[i + 4: i + 8] == 'pypy'
+            assert s[i + 4: i + 8] == b'pypy'
             i += 8
             while i < len(s):
                 if s[i] == 3:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to