[pypy-svn] r71244 - pypy/extradoc/talk/pycon2010/pypyspeed/examples

fijal at codespeak.net fijal at codespeak.net
Mon Feb 15 17:56:48 CET 2010


Author: fijal
Date: Mon Feb 15 17:56:46 2010
New Revision: 71244

Added:
   pypy/extradoc/talk/pycon2010/pypyspeed/examples/tracing.py   (contents, props changed)
Log:
missing file


Added: pypy/extradoc/talk/pycon2010/pypyspeed/examples/tracing.py
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/pycon2010/pypyspeed/examples/tracing.py	Mon Feb 15 17:56:46 2010
@@ -0,0 +1,9 @@
+
+def f():
+    k = 0
+    i = 0
+    while i < 1000000:
+        if k:
+            i += 2
+        i += 1
+



More information about the Pypy-commit mailing list