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

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Oct 20 21:24:11 CEST 2007


Author: cfbolz
Date: Sat Oct 20 21:24:09 2007
New Revision: 47655

Modified:
   pypy/dist/pypy/interpreter/typedef.py
Log:
fix typo


Modified: pypy/dist/pypy/interpreter/typedef.py
==============================================================================
--- pypy/dist/pypy/interpreter/typedef.py	(original)
+++ pypy/dist/pypy/interpreter/typedef.py	Sat Oct 20 21:24:09 2007
@@ -50,7 +50,7 @@
 #  Hash support
 
 def get_default_hash_function(cls):
-    # go to the first parent class of 'cls' that as a typedef
+    # go to the first parent class of 'cls' that has a typedef
     while 'typedef' not in cls.__dict__:
         cls = cls.__bases__[0]
         if cls is object:



More information about the Pypy-commit mailing list