[pypy-svn] r26837 - pypy/dist/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Fri May 5 23:29:16 CEST 2006


Author: arigo
Date: Fri May  5 23:29:16 2006
New Revision: 26837

Modified:
   pypy/dist/pypy/interpreter/typedef.py
Log:
A debugging print accidentally checked in.


Modified: pypy/dist/pypy/interpreter/typedef.py
==============================================================================
--- pypy/dist/pypy/interpreter/typedef.py	(original)
+++ pypy/dist/pypy/interpreter/typedef.py	Fri May  5 23:29:16 2006
@@ -48,7 +48,6 @@
 def get_default_hash_function(cls):
     # go to the first parent class of 'cls' that as a typedef
     while 'typedef' not in cls.__dict__:
-        print cls, '=> !'
         cls = cls.__bases__[0]
         if cls is object:
             # not found: 'cls' must have been an abstract class,



More information about the Pypy-commit mailing list