[pypy-svn] r9306 - pypy/branch/dist-interpapp/pypy/objspace

pedronis at codespeak.net pedronis at codespeak.net
Fri Feb 18 14:27:54 CET 2005


Author: pedronis
Date: Fri Feb 18 14:27:54 2005
New Revision: 9306

Modified:
   pypy/branch/dist-interpapp/pypy/objspace/descroperation.py
Log:
match CPython



Modified: pypy/branch/dist-interpapp/pypy/objspace/descroperation.py
==============================================================================
--- pypy/branch/dist-interpapp/pypy/objspace/descroperation.py	(original)
+++ pypy/branch/dist-interpapp/pypy/objspace/descroperation.py	Fri Feb 18 14:27:54 2005
@@ -7,7 +7,7 @@
 
 def raiseattrerror(space, w_obj, name): 
     w_type = space.type(w_obj) 
-    msg = "'%s' object has not attribute '%s'" %(w_type.name, name)
+    msg = "'%s' object has no attribute '%s'" %(w_type.name, name)
     raise OperationError(space.w_AttributeError, space.wrap(msg))
 
 class Object:



More information about the Pypy-commit mailing list