[pypy-svn] r62938 - pypy/branch/pyjitpl5/pypy/jit/tl

fijal at codespeak.net fijal at codespeak.net
Fri Mar 13 16:23:57 CET 2009


Author: fijal
Date: Fri Mar 13 16:23:54 2009
New Revision: 62938

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_demo.py
Log:
don't let it take forever


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_demo.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_demo.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_demo.py	Fri Mar 13 16:23:54 2009
@@ -50,7 +50,7 @@
 def f5():
     t = (1, 2, 3)
     i = 0
-    while i < 1000:
+    while i < 100:
         t = t[1], t[2], t[0]
         i += 1
     print t



More information about the Pypy-commit mailing list