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

2011-09-27 Thread Hernán Foffani
cript is effectively paused until I allow the >> breakpoint to resume. >> >> >> Keith Rome >> Senior Consultant and Architect >> MCPD-EAD, MCSD, MCDBA, MCTS-WPF, MCTS-TFS, MCTS-WSS Wintellect | >> 770.617.4016 | kr...@wintellect.com www.wintellect.com >

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

2011-09-27 Thread Keith Rome
ers-bounces+rome=wintellect@python.org] On Behalf Of Hernán Foffani Sent: Tuesday, September 27, 2011 6:43 AM Cc: ironpython-users@python.org Subject: Re: [Ironpython-users] instropection in an embedded engine You are right. It was the all the Operations thing what I was missing altogether,

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

2011-09-27 Thread Hernán Foffani
[mailto:ironpython-users-bounces+rome=wintellect@python.org] On Behalf Of > Hernán Foffani > Sent: Monday, September 26, 2011 1:36 PM > To: ironpython-users@python.org > Subject: Re: [Ironpython-users] instropection in an embedded engine > > Thanks, I'm getting closer. >

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

2011-09-26 Thread Keith Rome
nces+rome=wintellect@python.org] On Behalf Of Hernán Foffani Sent: Monday, September 26, 2011 1:36 PM To: ironpython-users@python.org Subject: Re: [Ironpython-users] instropection in an embedded engine Thanks, I'm getting closer. Now I'm trying to find how to get a (new? current?) CodeC

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

2011-09-26 Thread Hernán Foffani
lpers.GetPythonType. > > Sent from my Windows Phone > > -Original Message- > From: Hernán Foffani > Sent: Friday, September 23, 2011 9:12 AM > To: ironpython-users@python.org > Subject: [Ironpython-users] instropection in an embedded engine > > > Having th

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

2011-09-23 Thread Dino Viehland
Phone -Original Message- From: Hernán Foffani Sent: Friday, September 23, 2011 9:12 AM To: ironpython-users@python.org Subject: [Ironpython-users] instropection in an embedded engine Having the following Python code: class Plugin: def method(self): pass plugin = Plugin() a

[Ironpython-users] instropection in an embedded engine

2011-09-23 Thread Hernán Foffani
Having the following Python code: class Plugin: def method(self): pass plugin = Plugin() and an embedded ScriptScope instance in my .NET application, the following C# works fine dynamic plugin = pythonEngine.GetVariable("plugin"); var attrs = plugin.__class__.__dict__