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
>
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,
[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.
>
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
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
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
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__