[pypy-svn] r58499 - pypy/build/benchmem/benchmark

hpk at codespeak.net hpk at codespeak.net
Tue Sep 30 12:00:37 CEST 2008


Author: hpk
Date: Tue Sep 30 12:00:36 2008
New Revision: 58499

Modified:
   pypy/build/benchmem/benchmark/sizes.py
Log:
adding a "null" benchmark


Modified: pypy/build/benchmem/benchmark/sizes.py
==============================================================================
--- pypy/build/benchmem/benchmark/sizes.py	(original)
+++ pypy/build/benchmem/benchmark/sizes.py	Tue Sep 30 12:00:36 2008
@@ -1,4 +1,7 @@
 
+def bench_0nothing(iter1):
+    pass
+
 def bench_list_of_None(iter1):
     l = [None for i in range(iter1)]
     checkpoint(collect=True)



More information about the Pypy-commit mailing list