[pypy-commit] pypy default: self._assert() needs to be in a single line...

arigo noreply at buildbot.pypy.org
Thu Jul 26 10:58:23 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r56463:0b77afaafdd0
Date: 2012-07-26 10:56 +0200
http://bitbucket.org/pypy/pypy/changeset/0b77afaafdd0/

Log:	self._assert() needs to be in a single line...

diff --git a/pypy/module/pypyjit/test_pypy_c/model.py b/pypy/module/pypyjit/test_pypy_c/model.py
--- a/pypy/module/pypyjit/test_pypy_c/model.py
+++ b/pypy/module/pypyjit/test_pypy_c/model.py
@@ -435,7 +435,7 @@
                     del exp_ops[i]
                     break
             else:
-                self._assert(0,
+                self._assert(0, \
                     "operation %r not found within the {{{ }}} block" % (op,))
 
     def match_loop(self, expected_ops, ignore_ops):


More information about the pypy-commit mailing list