Re: [IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Dino Viehland
Marcin wrote: > Michael Foord wrote: > > Don't use IronPython Studio - it is *very* unstable and uses > IronPython > > 1 which is years out of date. > > Yikes. > > > Use IronPython Tools for Visual Studio 2010: > > > > http://ironpython.net/ironpython/tools/ > > > > Basically you shouldn't use _

Re: [IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Michael Foord
On 08/07/2010 19:26, Marcin Krol wrote: [snip...] IronPython Tools doesn't have a winforms designer because it isn't really possible without horrible hacks. I recommend using the Visual Studio C# designer and then subclass the classes it generates from IronPython. Thanks, this saves me newbi

Re: [IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Marcin Krol
Ahh, I should have done RTFM: IronPython Tools work with either the free integrated shell or with the Professional, Premium, or Ultimate editions. If you don’t already have Visual Studio 2010 installed you can download the integrated shell -- Regards, mk -- Premature optimization is the

Re: [IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Marcin Krol
Michael Foord wrote: Don't use IronPython Studio - it is *very* unstable and uses IronPython 1 which is years out of date. Yikes. Use IronPython Tools for Visual Studio 2010: http://ironpython.net/ironpython/tools/ Basically you shouldn't use __slots__ because it causes problems like this.

Re: [IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Michael Foord
On 08/07/2010 19:03, Marcin Krol wrote: Hello everyone, When I try to add attributes to self in a method outside __init__, I'm getting MissingMemberException. Do I have to add everything to __slots__ and __init__() ? I'm not saying it's not worth having smth like this to get Python plug int

[IronPython] Dynamic-ish programming, or MissingMemberException

2010-07-08 Thread Marcin Krol
Hello everyone, When I try to add attributes to self in a method outside __init__, I'm getting MissingMemberException. Do I have to add everything to __slots__ and __init__() ? I'm not saying it's not worth having smth like this to get Python plug into CLR, but this is kinda weird. In addi