[pypy-svn] rev 789 - pypy/trunk/src/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Mon Jun 9 14:01:01 CEST 2003


Author: mwh
Date: Mon Jun  9 14:01:00 2003
New Revision: 789

Modified:
   pypy/trunk/src/pypy/interpreter/extmodule.py
Log:
Wrap long line.


Modified: pypy/trunk/src/pypy/interpreter/extmodule.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/extmodule.py	(original)
+++ pypy/trunk/src/pypy/interpreter/extmodule.py	Mon Jun  9 14:01:00 2003
@@ -72,7 +72,9 @@
         w_module = space.newmodule(space.wrap(modulename))
         for key, value in self.__class__.__dict__.items() + self.__dict__.items():
             if isinstance(value, appmethod):
-                w_function = make_builtin_func(space,value.func.__get__(self),boundmethod=True)
+                w_function = make_builtin_func(space,
+                                               value.func.__get__(self),
+                                               boundmethod=True)
                 space.setattr(w_module, space.wrap(key), w_function)
             elif isinstance(value, appdata):
                 w_data = space.wrap(value.data)


More information about the Pypy-commit mailing list