[pypy-svn] r57019 - pypy/branch/garden-call-code/pypy/interpreter/callbench

pedronis at codespeak.net pedronis at codespeak.net
Wed Aug 6 00:03:15 CEST 2008


Author: pedronis
Date: Wed Aug  6 00:03:15 2008
New Revision: 57019

Added:
   pypy/branch/garden-call-code/pypy/interpreter/callbench/bltna1.py   (contents, props changed)
Log:
and this one too



Added: pypy/branch/garden-call-code/pypy/interpreter/callbench/bltna1.py
==============================================================================
--- (empty file)
+++ pypy/branch/garden-call-code/pypy/interpreter/callbench/bltna1.py	Wed Aug  6 00:03:15 2008
@@ -0,0 +1,14 @@
+from sup import run
+
+def w(N, start):
+    d = {}
+    d1 = {}
+    start()
+    i = 0
+    while i < N:
+        d.update(d1)
+        d.update(d1)
+        d.update(d1)
+        i+=1
+    
+run(w, 1000)



More information about the Pypy-commit mailing list