Re: [Ironpython-users] instropection in an embedded engine

2011-09-27 Thread Hernán Foffani
El 27/09/2011, a las 16:54, Keith Rome escribió: > Just beware that if you use this same mechanism to introspect CLR objects, it > can return member names for static and protected members in addition to the > public instance members (and attempts to access those members might fail). To > work

Re: [Ironpython-users] instropection in an embedded engine

2011-09-27 Thread Keith Rome
Just beware that if you use this same mechanism to introspect CLR objects, it can return member names for static and protected members in addition to the public instance members (and attempts to access those members might fail). To work around this, I first use reflection to get a list of static

Re: [Ironpython-users] instropection in an embedded engine

2011-09-27 Thread Hernán Foffani
You are right. It was the all the Operations thing what I was missing altogether, silly me. Now it all make sense. Thanks a lot. El 26/09/2011, a las 19:57, Keith Rome escribió: > If you are just trying to enumerate members of a python object, and possibly > invoke them, then wouldn't a Langua

Re: [Ironpython-users] Options for debugger for DLR languages on Mono

2011-09-27 Thread Doug Blank
On Mon, Sep 26, 2011 at 10:35 PM, Dino Viehland wrote: > Is the hosted IronPython running in the same ScriptEngine or a different one? Different. > If it's a different one you'll need to do the settrace on the other > ScriptEngine but > you should be able to do that from Python code as well. Y