[pypy-svn] r13738 - pypy/dist/pypy/annotation

pedronis at codespeak.net pedronis at codespeak.net
Thu Jun 23 20:27:41 CEST 2005


Author: pedronis
Date: Thu Jun 23 20:27:40 2005
New Revision: 13738

Modified:
   pypy/dist/pypy/annotation/bookkeeper.py
Log:
stats for contains



Modified: pypy/dist/pypy/annotation/bookkeeper.py
==============================================================================
--- pypy/dist/pypy/annotation/bookkeeper.py	(original)
+++ pypy/dist/pypy/annotation/bookkeeper.py	Thu Jun 23 20:27:40 2005
@@ -88,6 +88,9 @@
     def consider_list_list_eq(self, obj1, obj2):
         return obj1, obj2
 
+    def consider_contains(self, seq):
+        return seq
+
     def consider_non_int_eq(self, obj1, obj2):
         if obj1.knowntype == obj2.knowntype == list:
             self.count("list_list_eq", obj1, obj2)



More information about the Pypy-commit mailing list