[IronPython] 'map' not working the same between IronPython-0.7.x and IronPython-0.9?

Steven Drucker sdrucker at microsoft.com
Wed Aug 3 21:54:51 CEST 2005


I used to be able to do the following code:

 

def foo(a):

            print a;

 

filesraw = System.IO.Directory('D:\\temp\\photos");

map(foo,filesraw);

 

and it would work just fine.

 

 

Now, however, this is no longer working. 

The error I get is as follows:

PythonTypeError: foo() takes exactly 1 argument, (97 given)

 

This seems like it should work since filesraw is enumerable and in fact,
I can do the following:

for file in filesraw:

            print file

 

 

 

 

 

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20050803/501242b5/attachment.html>


More information about the Ironpython-users mailing list