[pypy-svn] r49490 - pypy/branch/clr-module-improvements/pypy/module/clr

antocuni at codespeak.net antocuni at codespeak.net
Fri Dec 7 00:29:34 CET 2007


Author: antocuni
Date: Fri Dec  7 00:29:34 2007
New Revision: 49490

Modified:
   pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py
Log:
typo



Modified: pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py
==============================================================================
--- pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py	(original)
+++ pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py	Fri Dec  7 00:29:34 2007
@@ -212,7 +212,7 @@
     # this is where we locate the interfaces inherited by the class
     # set the flag hasIEnumerable if IEnumerable interface has been by the class
     hasIEnumerable = False
-    for interface in b_type.GetInterfaces(i):
+    for interface in b_type.GetInterfaces():
         if interface.ToString() == "System.Collections.IEnumerable":
             hasIEnumerable = True
 



More information about the Pypy-commit mailing list