[pypy-commit] pypy py3k: 2to3

mjacob noreply at buildbot.pypy.org
Wed Jun 3 17:38:46 CEST 2015


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3k
Changeset: r77829:e1465507097e
Date: 2015-06-03 17:38 +0200
http://bitbucket.org/pypy/pypy/changeset/e1465507097e/

Log:	2to3

diff --git a/pypy/module/_random/test/test_random.py b/pypy/module/_random/test/test_random.py
--- a/pypy/module/_random/test/test_random.py
+++ b/pypy/module/_random/test/test_random.py
@@ -49,8 +49,7 @@
         rnd.seed(1234)
         state = rnd.getstate()
         s = repr(state)
-        assert len(s) == 7956
-        assert s.count('L') == 625
+        assert len(s) == 7331
 
     def test_seed(self):
         import _random, sys


More information about the pypy-commit mailing list