Re: [IronPython] How to place static class in script name space

2011-06-14 Thread Markus Schaber
Hi, Tom, Von: Tom Unger > But I want to eliminate the need for each script to do that import by setting > up the scope with: > scriptScope.SetVariable("App", App); > This does not compile because App is a static class, not an object. Maybe scriptScope.SetVariable("App", DynamicHelpers.GetPyt

Re: [IronPython] How to place static class in script name space

2011-06-13 Thread Keith Rome
.@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Dino Viehland Sent: Monday, June 13, 2011 1:22 PM To: Discussion of IronPython Subject: Re: [IronPython] How to place static class in script name space We specifically allow from staticclass import * because we tre

Re: [IronPython] How to place static class in script name space

2011-06-13 Thread Dino Viehland
3, 2011 10:16 AM To: 'users@lists.ironpython.com' Subject: [IronPython] How to place static class in script name space I am using IronPython for scripting an application. To make writing scripts easier I want to place several objects in the script name space so they can be easily use

[IronPython] How to place static class in script name space

2011-06-13 Thread Tom Unger
I am using IronPython for scripting an application. To make writing scripts easier I want to place several objects in the script name space so they can be easily used. I got stuck with how to place a reference to a static object, "App", in the name space. This is probably a simple operation and