[pypy-svn] r8483 - pypy/dist/pypy/objspace/std

mwh at codespeak.net mwh at codespeak.net
Sun Jan 23 12:12:57 CET 2005


Author: mwh
Date: Sun Jan 23 12:12:57 2005
New Revision: 8483

Modified:
   pypy/dist/pypy/objspace/std/dictobject.py
Log:
remove old comments

Modified: pypy/dist/pypy/objspace/std/dictobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictobject.py	Sun Jan 23 12:12:57 2005
@@ -83,13 +83,7 @@
             freeslot = None
 
         perturb = lookup_hash
-        ##c = len(self.data) + 99
         while 1:
-            ##c -= 1
-            ##if not c:
-            ##    import sys, pdb
-            ##    print >> sys.stderr, 'dict lookup lost in infinite loop'
-            ##    pdb.set_trace()
             i = (i << 2) + i + perturb + 1
             entry = self.data[i%len(self.data)]
             if entry.w_value is None:



More information about the Pypy-commit mailing list