[pypy-svn] r49748 - pypy/branch/interplevel-oldstyle-classes/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Dec 13 23:35:59 CET 2007


Author: cfbolz
Date: Thu Dec 13 23:35:59 2007
New Revision: 49748

Modified:
   pypy/branch/interplevel-oldstyle-classes/pypy/interpreter/gateway.py
Log:
typo in a comment


Modified: pypy/branch/interplevel-oldstyle-classes/pypy/interpreter/gateway.py
==============================================================================
--- pypy/branch/interplevel-oldstyle-classes/pypy/interpreter/gateway.py	(original)
+++ pypy/branch/interplevel-oldstyle-classes/pypy/interpreter/gateway.py	Thu Dec 13 23:35:59 2007
@@ -328,7 +328,7 @@
 
     def visit__object(self, typ):
         if typ not in (int, str, float, unicode, r_longlong):
-            assert False, "unsupported basic type in uwnrap_spec"
+            assert False, "unsupported basic type in unwrap_spec"
         self.unwrap.append("space.%s_w(%s)" % (typ.__name__,
                                                self.nextarg()))
 



More information about the Pypy-commit mailing list