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

mwh at codespeak.net mwh at codespeak.net
Mon Jul 7 18:36:43 CEST 2003


Author: mwh
Date: Mon Jul  7 18:36:42 2003
New Revision: 1109

Modified:
   pypy/trunk/src/pypy/objspace/std/multimethod.py
Log:
very minor deobfuscation


Modified: pypy/trunk/src/pypy/objspace/std/multimethod.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/multimethod.py	(original)
+++ pypy/trunk/src/pypy/objspace/std/multimethod.py	Mon Jul  7 18:36:42 2003
@@ -77,7 +77,7 @@
                     result.append((currenttypes, func))
         else:
             classtuple = initialtypes[len(currenttypes)]
-            for i, nexttype in zip(range(len(classtuple)), classtuple):
+            for nexttype in classtuple:
                 self.internal_buildchoices(initialtypes,
                                            currenttypes + (nexttype,),
                                            result)


More information about the Pypy-commit mailing list