Re: [IronPython] exe version and icon?

2006-09-02 Thread [EMAIL PROTECTED]
import sys from IronPython.Hosting import PythonCompiler from System.Reflection.Emit import PEFileKinds from System.Collections.Generic import List sources = List[str]() for file in sys.argv[1:-1]: sources.Add(file) exename = sys.argv[-1] compiler = PythonCompiler(sources, exename) compiler.

Re: [IronPython] an unexpected keyword argument

2006-09-02 Thread Martin Maly
Yes, this is a bug in IronPython. I've filed it on CodePlex as bug 2810 Thanks for the report! Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of HEMMI, Shigeru Sent: Friday, September 01, 2006 6:28 PM To: Discussion of IronPython Subject: Re: [IronP