Remove benchmark from tests.
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 24 Feb 2010 06:10:00 +0000 (22:10 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 24 Feb 2010 06:10:00 +0000 (22:10 -0800)
tests/run/dict_getitem.pyx

index 1e063da3be4c987ee7258f87a7935ec96372dbaf..b465a5b863cfa0e6fe019495ee26d1d9618c15b4 100644 (file)
@@ -29,24 +29,6 @@ def test(dict d, index):
     """
     return d[index]
 
-def time_dict(dict d, ix, long N):
-    """
-    >>> time_dict({"abc": 1}, "abc", 1e6)
-    """
-    from time import time
-    t = time()
-    cdef int i
-    for i in range(N):
-        d[ix]
-    return time() - t
-
-def time_nondict(object d, ix, long N):
-    """
-    >>> time_nondict({"abc": 1}, "abc", 1e6)
-    """
-    from time import time
-    t = time()
-    cdef int i
-    for i in range(N):
-        d[ix]
-    return time() - t
+cdef class Subscriptable:
+    def __getitem__(self, key):
+        return key
\ No newline at end of file