[pypy-svn] rev 2566 - pypy/trunk/src/pypy/objspace/std

pmaupin at codespeak.net pmaupin at codespeak.net
Fri Dec 19 14:37:53 CET 2003


Author: pmaupin
Date: Fri Dec 19 14:37:52 2003
New Revision: 2566

Modified:
   pypy/trunk/src/pypy/objspace/std/typeobject.py
Log:
Reformat (break a line up)

Modified: pypy/trunk/src/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/typeobject.py	(original)
+++ pypy/trunk/src/pypy/objspace/std/typeobject.py	Fri Dec 19 14:37:52 2003
@@ -52,7 +52,8 @@
         multimethods = getmultimethods(space.__class__, w_self.__class__)
         key = space.unwrap(w_key)
         if not isinstance(key, str):
-            raise OperationError(space.w_TypeError,space.wrap('attribute name must be string'))
+            raise OperationError(space.w_TypeError,
+                       space.wrap('attribute name must be string'))
         try:
             code = multimethods[key]
         except KeyError:


More information about the Pypy-commit mailing list