Re: [IronPython] unsupported operand type(s) for operator overloading.

2009-05-13 Thread 李兵
Thank Dino Viehland, Seo Sanghyeon. I have resolved. Code in the following: namespace TestLibrary { public class Foo { public string Value = abc; public static FooGroup operator (Foo left, Foo right) { return new FooGroup(left, right); } } public

[IronPython] IronPython 2.6 CodePlex Source Update

2009-05-13 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/50138. ADDED SOURCES

Re: [IronPython] Inspect Module

2009-05-13 Thread Dave Fugate
It's because we strip out CPython modules that aren't importable by ipy. That is, the sys._getframe issue I talked about at http://knowbody.livejournal.com/13271.html is the underlying culprit here: C:\Program Files\IronPython 2.6ipy.exe IronPython 2.6 Alpha 1 (2.6.0.1) on .NET

Re: [IronPython] Inspect Module

2009-05-13 Thread Davy Mitchell
Thanks for the info and update Dave. Is there a page on codeplex for the 2.6 modules status? The 2.01 version of inspect seems to work ok so far in 2.6 so will do for now :-) Thanks, Davy Mitchell -- Davy Stuff - http://daftspaniel.blogspot.com Geeky Stuff -

Re: [IronPython] Inspect Module

2009-05-13 Thread Dino Viehland
This will should be fixed in tomorrow's source drop. I have a check-in which removes sys._getframe unless the -X:Frames or -X:FullFrames options are passed. When one of those are passed sys._getframe works for any value and if -X:FullFrames is passed then you can get locals from the frames

[IronPython] Sympl Language Sample and Walkthrough Document

2009-05-13 Thread Bill Chiles
There's a new DLR sample to which I wanted to draw folks' attentions. There is a small language implementation sample, implemented in both IronPython and C#, with an accompanying walkthrough document. The code is now on the DLR Codeplex site under ...\Languages\Sympl, and the document is on