Re: [IronPython] VS2005 Iron Python

2006-08-17 Thread fabio.pliger
Did u have a look at the output window? It should give all the program outputs... (don't know if it's the aswer u were looking for..) cheers,Fabio -Original Message- From: Jeff Collett [EMAIL PROTECTED] To: users@lists.ironpython.com Date: Wed, 16 Aug 2006 15:10:58 -0500 Subject:

[IronPython] IronPython and Glade 3.0

2006-08-17 Thread Dragan Bojovic
hi, how can i use glade with ironpython? i search the net and i only found something like: gxml = Glade.XML(path_to_glade_file, window1, None) gxml.Autoconnect(this) but that does not work. can anybody help me please, can anybody send me an working helloworld.glade and helloworld.py

Re: [IronPython] IronPython 1.0 RC2

2006-08-17 Thread Zoltan Varga
Hi, This release does not seem to include sources/tests. Is this intentional, or it is a bug ? Zoltan On 8/17/06, Dino Viehland [EMAIL PROTECTED] wrote: Hello IronPython Community, We have just released IronPython 1.0 RC2. This build includes fixes for

Re: [IronPython] IronPython 1.0 RC2

2006-08-17 Thread Haibo Luo
Zoltan - you can find 2 download files for each release: one is binary only; the other has source/test (so that you can build it yourself). See: http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=IronPython -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [IronPython] Debugging support PythonEngine

2006-08-17 Thread Shri Borde
I have opened this bug - http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPythonWorkItemId=2248 - to track the issue with stepping in. We are not emitting any line number information for IL offset 0. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shri

Re: [IronPython] IronPython 1.0 RC2

2006-08-17 Thread Martin Maly
Sources are in separate zip file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zoltan Varga Sent: Thursday, August 17, 2006 7:00 AM To: Discussion of IronPython Subject: Re: [IronPython] IronPython 1.0 RC2 Hi, This release does not

[IronPython] PythonEngine.SetVariable

2006-08-17 Thread Jon Cosby
At one point, PythonEngine.SetVariable was replaced by PythonEngine.SetGlobal. I don't find either of them in RC1. Why is this? Jon ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Debugging support PythonEngine

2006-08-17 Thread Kristof Wagemans
Its good to hear that its fixable. But, off course, heres the next one J. With the same little script: x = 1 y = 2 def Add(a, b): x = a + b return x z = Add(x, y) print z And the following C# code: EngineOptions options = new EngineOptions();

Re: [IronPython] PythonEngine.SetVariable

2006-08-17 Thread Kristof Wagemans
Now it has become: PythonEngine.Globals[myVar] = myVar; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Cosby Sent: Friday 18 August 2006 2:34 To: IronPython Users Subject: [IronPython] PythonEngine.SetVariable At one point,

Re: [IronPython] Debugging support PythonEngine

2006-08-17 Thread Shri Borde
The first issue is probably the same that IL offset 0 does not have any debug information. Calling the delegate add steps into a DynamicMethod which confuses VS. A workaround for now is to add this statement before creating the PythonEngine.