[IronPython] COM Object Issue

2008-12-11 Thread Zaur Shibzoukhov
I just discovered strange thing with COM (IP 2.0): D:\Downloads\IronPython-2.0-Bin\IronPython-2.0ipy.exe -X:ExceptionDetail -X:ShowClrExceptions IronPython 2.0 (2.0.0.0) on .NET 2.0.50727.1433 Type help, copyright, credits or license for more information. import System

Re: [IronPython] Newbie Questions

2008-12-11 Thread Giulio Petrucci
Hi Dino, first of all, thanks for your reply 2008/12/5 Dino Viehland [EMAIL PROTECTED]: You can add a reference to the assembly and then import both the class and the enum. For example: import clr clr.AddReference('MyLibrary') from MyLibrary import MyClass, MyEnum

Re: [IronPython] Newbie Questions

2008-12-11 Thread Dino Viehland
.NET config doesn't really have any concept of configuration for an individual DLL. Instead it only has a config for the exe which kicked things off (or actually for the current app domain). So the concept of a MyLibrary.dll.config file doesn't really exist AFAIK. So that basically leaves

Re: [IronPython] Newbie Questions

2008-12-11 Thread Giulio Petrucci
Hi Dino, 2008/12/11 Dino Viehland [EMAIL PROTECTED]: .NET config doesn't really have any concept of configuration for an individual DLL. Instead it only has a config for the exe which kicked things off (or actually for the current app domain). So the concept of a MyLibrary.dll.config file

Re: [IronPython] Announcing IronPython 2.0

2008-12-11 Thread Andy.Tao
good news, thanks for yours' hard working... I noticed that the binary package haven't contain the help document, could you tell us what time the latest API document will be released? thanks -- Andy Tao[陶祖洪] 祖洪测试自动化 http://www.zuhong.cn 天是圆的,地是方的,凡事都要有个规矩!

Re: [IronPython] Announcing IronPython 2.0

2008-12-11 Thread Jeff Slutter
Excuse me if this is known or not, but searching around has only turned up articles/mailing lists posts that are two years old, but does IronPython 2.0 support .NET attributes yet? I've seen some examples of doing it using stub classes in C# and then deriving from the in Python, but I'm not sure

Re: [IronPython] Announcing IronPython 2.0

2008-12-11 Thread Curt Hagenlocher
We don't support this in IronPython 2.0, no. And oddly, no one seems to have added this as a desired feature in CodePlex, even though it's come up a few times before on this list. The most likely way that we'd initially provide support for this is to let you override the CLS backing class that's

Re: [IronPython] Announcing IronPython 2.0

2008-12-11 Thread Keith J. Farmer
Actually, IP has error messages about help that refer to things that don't exist -- such as the CHM help included in other distributions. At this point, I suspect IP is emulating CPython behavior too closely ;) So congrats on v2! I recall there was talk long ago about a PyPan-like service