vote up 1 vote down star

scope.SetVariable("math", ?? typeof(System.Math) ??);

or do I need create a module?

flag

1 Answer

vote up 1 vote down check

You can do:

scope.SetVariable("math", DynamicHelpers.GetPythonTypeFromType(typeof(System.Math)));

DynamicHelpers is in IronPython.Runtime.Types.

link|flag
Thank you !!!!!!!!!!!!!!!!!!!!!! – Boolean Aug 20 at 3:29
And did you know how to create a ScripeScope that has parent scope? – Boolean Aug 20 at 3:29
There's no way to do this - while Scope's have a Parent property ScriptScope's don't expose this. The parent property on Scope's is also going away. If you want to chain lookups you should create a ScriptScope w/ your own custom IAttributesCollection which knows how to look in the parent scope. – Dino Viehland Aug 20 at 22:22
Thank you.I found I could create a Scope with a parent scope using Scope(Scope parent, IAttributesCollection dictionary), and HostingHelpers can create a ScriptScope from a Scope. – Boolean Aug 23 at 5:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.