Re: [IronPython] IronPython 0.9.6 released

2005-12-12 Thread Keith J. Farmer
Out of curiosity, was there a specific reason for having different cases for Parser.fromString/Parser.FromString? - Keith J. Farmer // [EMAIL PROTECTED] ___ users mailing list users@lists.ironpython.com

Re: [IronPython] IronPython 0.9.6 released

2005-12-12 Thread Szymon Kobalczyk
Martin Maly wrote: Hello IronPython community, We've just released the newest version of IronPython ? 0.9.6. [...] I haven't found any mention of fixes regarding the memory issues I reported last month. Have you done anything to stop these memory leaks? I think this is rather important for

Re: [IronPython] IronPython 0.9.6 released

2005-12-12 Thread Keith J. Farmer
For what it's worth, it compiled just fine on my system without modifications using VS2k5. - Keith J. Farmer // [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of J. de Hooge Sent: Monday, 12 December 2005 01:29 [QUOTE] After

Re: [IronPython] IronPython 0.9.6 released

2005-12-12 Thread J. de Hooge
Clearing the LIB environment variable solves my compilaton problem for IP 0.9.6 Still don't understand why that is not needed for IP 0.9.5 But allas, I can now built 0.9.6 with [STAThread] and start using it. Joepie! (Dutch exclamation of joy) Jacques de Hooge [EMAIL PROTECTED]

Re: [IronPython] IronPython IDE

2005-12-12 Thread Giles Thomas
Hi Aaron, Thanks for the pointer. Is there any simple documentation on setting this up once you've downloaded it? Cheers, Giles Aaron Marten wrote: Hi Giles, I'm on the Visual Studio SDK team here at Microsoft. In co-operation with the IronPython team, we're currently working on

[IronPython] bug: list.remove broken in transition from 0.9.5 to 0.9.6

2005-12-12 Thread J. de Hooge
LS Following fragment: === aList = [['a']] anItem = ['a'] print aList aList.remove (anItem) print aList Prints in IP 0.9.6 == [['a']] Traceback (most recent call last): at __main__.Initialize() in C:\activ_dell\prog\fun\src\funTry.py:line 5 ValueError:

[IronPython] bug: list.index broken in transition from ip 0.9.5 to ip 0.9.6

2005-12-12 Thread J. de Hooge
LS Yet another disguise of probably the same underlying bug: aList = [['a']] anItem = ['a'] print aList.index (anItem) Traceback (most recent call last): at __main__.Initialize() in C:\activ_dell\prog\fun\src\funTry.py:line 4 ValueError: list.index(x): x not in list The number of

Re: [IronPython] Problems with tutorials

2005-12-12 Thread Martin Maly
Believe it or not, this problem is actually caused by the missing [STAThread] attribute on the IronPythonConsole Main. Good to know this :) Seems that when I remove it, I caused problems for more people than I helped. As I said in my previous email to Jacques, I am going to fix this for the

Re: [IronPython] Problems with tutorials

2005-12-12 Thread John Lam
IMHO, this is a feature that should be enabled via a command-line switch; you can't back out of your choice that you make at startup time without potentially serious consequences. I'm doing this via a command line switch + a trampoline function in my Ruby CLR bridge. It seems to be the best

[IronPython] IronPython 0.9.6 released

2005-12-12 Thread Dino Viehland
Hello IronPython community, We?ve just released the newest version of IronPython ? 0.9.6. This is most likely the last Alpha version of IronPython before the end of the year when we play to release IronPython 1.0 Beta 1. This build includes many bug fixes for issues reported to us by the