[pypy-commit] pypy py3k: 2to3

mjacob noreply at buildbot.pypy.org
Sat Aug 22 03:01:12 CEST 2015


Author: Manuel Jacob <me at 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:


More information about the pypy-commit mailing list