Re: [IronPython] Silverlight on the Codeplex Site

2008-08-09 Thread Curt Hagenlocher
Well, it did! Thanks for pointing that out; I've removed that now-useless bit of information. On Fri, Aug 8, 2008 at 4:18 PM, Michael Foord <[EMAIL PROTECTED]>wrote: > The IronPython Codeplex site proudly announces: > > Silverlight v1.1 Alpha includes IronPython support! > > Michael > > -- > htt

Re: [IronPython] Is there a way to create a new ScriptScope that inherits from global ScriptScope?

2008-08-09 Thread Seshadri Pillailokam Vijayaraghavan
Currently there isn't a way to create a new ScriptScope object based on an existing one. If I understand your query correctly, you can do what you want by iterating over the items of an existing object and copy them over the newer one as soon as your create a new one. Won't this work for you?

[IronPython] IronPython 2.0B4 Docs

2008-08-09 Thread Michael Foord
Hello guys, Previous IronPython 2 releases have included a 'Docs' distribution which includes the 'Microsoft.Scripting.chm' document. This is missing from the 2.0B4 release. Michael Foord -- http://www.ironpythoninaction.com/ http://www.voidspace.org.uk/ http://www.trypython.org/ http://www.

[IronPython] Is there a way to create a new ScriptScope that inherits from global ScriptScope?

2008-08-09 Thread Andy.Tao
HI guys, Is there a way to create a new ScriptScope that inherits from global ScriptScope? I want to do it like this: first step: expose some object model to global scope and some global variables; second step: execute task script in independ scope to avoid modify global objects and variable