Re: [IronPython] Announcing IronPython 2.0 Beta4

2008-08-07 Thread Michael Foord
Harry Pierson wrote: From my soon to be posted blog on B4: I mentioned a couple of weeks ago that I've been spending a lot of time with lawyers, and this is the first step towards making the IronPython project as open as possible. Note the use of the word first in that previous statement. In

Re: [IronPython] IP2B4 and MDbg support?

2008-08-07 Thread Curt Hagenlocher
We're not going to do anything specific to support MDbg (or vice versa, as far as I know) -- but we shouldn't have to. IronPython emits the same kind of line number metadata that C# emits, so any managed debugger ought to be able to follow right along. On Wed, Aug 6, 2008 at 9:16 AM, [EMAIL

Re: [IronPython] IP2B4 and MDbg support?

2008-08-07 Thread mbarnett
Thanks Curt, I should referenced the following link: http://forums.msdn.microsoft.com/en-US/netfxtoolsdev/thread/34b32f85-13cf-4613- 86a5-3d2464661530/ Mike Stall mentions that there may be a MDbg parser problem with dynamic languages and hints that there might be an updated release of MDbg

[IronPython] pyc.py sample

2008-08-07 Thread Michael Foord
Hello guys, The IronPython 2.0b4 release notes state: # Static compilation of python files is now supported again and the pyc.py sample has been updated to use the newer version. Where is the updated sample? I can't find it... As samples are updated for IronPython 2 it would make sense to

Re: [IronPython] IP2B4 and MDbg support?

2008-08-07 Thread Curt Hagenlocher
Ah. Well, that's a question for Mike, then -- as far as I know, he's not on this list. On Thu, Aug 7, 2008 at 5:40 AM, [EMAIL PROTECTED] wrote: Thanks Curt, I should referenced the following link: http://forums.msdn.microsoft.com/en-US/netfxtoolsdev/thread/34b32f85-13cf-4613-

[IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Michael Foord
Hello all, Rather than simply stripping modules that rely on C extensions, can we view it as a bug that the C extension hasn't been ported... For example, could sqlite be ported with a compatibility shim and System.Data.SQLite? http://sqlite.phxsoftware.com/ Michael --

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Sanghyeon Seo
2008/8/7 Michael Foord [EMAIL PROTECTED]: For example, could sqlite be ported with a compatibility shim and System.Data.SQLite? http://sqlite.phxsoftware.com/ I must mention pyexpat here, which a lot of Python XML tools rely on, and which has been available as a compatibility shim around

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Jeff Hardy
For example, could sqlite be ported with a compatibility shim and System.Data.SQLite? http://sqlite.phxsoftware.com/ I've actually written such a thing while working with Django, based on Seo's db work in FePy. It completely replaces the sqlite3 module instead of being a shim as it was much

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Curt Hagenlocher
On Thu, Aug 7, 2008 at 6:06 AM, Sanghyeon Seo [EMAIL PROTECTED] wrote: 2008/8/7 Michael Foord [EMAIL PROTECTED]: For example, could sqlite be ported with a compatibility shim and System.Data.SQLite? http://sqlite.phxsoftware.com/ I must mention pyexpat here, which a lot of Python XML

[IronPython] PyCon UK Wiki Page: IronPython Tutorial

2008-08-07 Thread Michael Foord
Hello all, PyCon UK starts with a tutorial day, when you have the opportunity to attend two half day tutorials for only £30. We have some great tutorials lined up: http://pyconuk.org/timetable.html Christian Muirhead, Menno Smits and myself will be holding an IronPython tutorial in the morning

Re: [IronPython] pyc.py sample

2008-08-07 Thread Dave Fugate
Hi Michael, this seems like as good of a time as any to shed some light on our thoughts around the IronPython samples. First Pyc - Pyc.py was indeed updated for IronPython 2.x in our internal TFS repository last month, but as most people are already aware we don't reship the samples with every

Re: [IronPython] pyc.py sample

2008-08-07 Thread Srivatsn Narayanan
Ok. May I suggest not including sample updates in IronPython release notes if they have their own release cycle... :-) Yes my fault there. I didn't know about the separate release cycle for samples. I'm learning... :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [IronPython] pyc.py sample

2008-08-07 Thread Michael Foord
Srivatsn Narayanan wrote: Ok. May I suggest not including sample updates in IronPython release notes if they have their own release cycle... :-) Yes my fault there. I didn't know about the separate release cycle for samples. I'm learning... :) Are you generally responsible for doing

Re: [IronPython] loading an image in silverlight, in xaml, from the .xap

2008-08-07 Thread Dan Eloff
On Mon, Aug 4, 2008 at 4:40 PM, Jimmy Schementi [EMAIL PROTECTED] wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:users- [EMAIL PROTECTED] On Behalf Of Dan Eloff Sent: Sunday, August 03, 2008 2:13 PM To: Discussion of IronPython Subject: Re: [IronPython] loading an image in

Re: [IronPython] pyc.py sample

2008-08-07 Thread Srivatsn Narayanan
Promotion or punishment? Well.. as Obi-Wan would say it all depends greatly on our point of view :) No Dave and I just share it out between us based on whoever is free(er) at that point. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord

[IronPython] Deprecation warning on Windows Form Double Buffered

2008-08-07 Thread Davy Mitchell
Hi All, With the following code I am getting a warning: DeprecationWarning: Accessing protected method DoubleBuffered from non-derived type Form *import clr clr.AddReference('System.Windows.Forms') from System import * from System.Windows.Forms import * class LDForm(Form): def

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Carl Cerecke
On Fri, Aug 8, 2008 at 2:26 AM, Curt Hagenlocher [EMAIL PROTECTED] wrote: The sqlite example is more complicated for two reasons: 1) There wouldn't be any point in doing it unless we could distribute the referenced third-party project as well. This probably gives Harry the opportunity for a

Re: [IronPython] Deprecation warning on Windows Form Double Buffered

2008-08-07 Thread Dino Viehland
The warning is overly aggressive in this case - the warning is removed for the next release and your code will still work so you can ignore it. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Davy Mitchell Sent: Thursday, August 07, 2008 12:54 PM To: Discussion of IronPython

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Curt Hagenlocher
I had a brief discussion about this with Harry and want to add a few things. On Thu, Aug 7, 2008 at 7:26 AM, Curt Hagenlocher [EMAIL PROTECTED] wrote: Seo's example is a simpler one. Harry is working on is getting legal approval for accepting community contributions into the modules. Once

Re: [IronPython] Deprecation warning on Windows Form Double Buffered

2008-08-07 Thread Davy Mitchell
Thanks Dino - that's good to know! On Thu, Aug 7, 2008 at 9:09 PM, Dino Viehland [EMAIL PROTECTED]wrote: The warning is overly aggressive in this case – the warning is removed for the next release and your code will still work so you can ignore it. *From:* [EMAIL PROTECTED] [mailto:

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Michael Foord
Curt Hagenlocher wrote: I had a brief discussion about this with Harry and want to add a few things. On Thu, Aug 7, 2008 at 7:26 AM, Curt Hagenlocher [EMAIL PROTECTED] wrote: Seo's example is a simpler one. Harry is working on is getting legal approval for accepting community contributions

Re: [IronPython] Standard Library Inclusion - C Extension Modules

2008-08-07 Thread Curt Hagenlocher
On Thu, Aug 7, 2008 at 1:24 PM, Michael Foord [EMAIL PROTECTED] wrote: Curt Hagenlocher wrote: The sqlite example is more complicated for two reasons: 1) There wouldn't be any point in doing it unless we could distribute the referenced third-party project as well. Actually - there is *no*

Re: [IronPython] pyc.py sample

2008-08-07 Thread Srivatsn Narayanan
The sample has been uploaded to Codeplex and is available in the Beta4 release page - http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=14353 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Srivatsn Narayanan Sent: Thursday,

Re: [IronPython] pyc.py sample

2008-08-07 Thread Michael Foord
Srivatsn Narayanan wrote: The sample has been uploaded to Codeplex and is available in the Beta4 release page - http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=14353 Cool - thanks! Michael -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL