Re: [IronPython] IronPython 2.6 CodePlex Source Update

2010-01-27 Thread Dino Viehland
My bad, I forgot the magic marker which includes the commit message. This was just an integration of all the changes from Main that have Gone in over the past few months (which have for the most part had commit messages) to the 2.6 servicing branch. The only differences were to avoid binary bre

Re: [IronPython] IronPython 2.6 CodePlex Source Update

2010-01-27 Thread Jeff Hardy
It's commits like this that I wish had an explanation :). - Jeff On Wed, Jan 27, 2010 at 1:10 PM, wrote: > This is an automated email letting you know that sources > have recently been pushed out.  You can download these newer > sources directly from > http://ironpython.codeplex.com/SourceCont

[IronPython] IronPython 2.6 CodePlex Source Update

2010-01-27 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/63614. ADDED SOURCES $/IronPython/IronPython_2_6/Src/Runtime/Microsoft.Dynamic/Runtime

Re: [IronPython] bug with closure in coroutine

2010-01-27 Thread Ronnie Maor
welcome. pleasure doing business with you :-) On Wed, Jan 27, 2010 at 8:08 PM, Dino Viehland wrote: > It’s so easy to fix it’s actually already fixed for 2.6.1 J Thanks for > reporting it though. > > > > *From:* users-boun...@lists.ironpython.com [mailto: > users-boun...@lists.ironpython.com]

Re: [IronPython] bug with closure in coroutine

2010-01-27 Thread Dino Viehland
It's so easy to fix it's actually already fixed for 2.6.1 :) Thanks for reporting it though. From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Ronnie Maor Sent: Wednesday, January 27, 2010 8:17 AM To: Discussion of IronPython Subject: [IronPython]

Re: [IronPython] IronPython ASP

2010-01-27 Thread Dody Gunawinata
If you need any specific help, just make post on this list. I am running production IronPython for ASP.Net applications on Windows 2008, Windows 2003 so I might be able to help. In general, there is no special treatment needed to be done to have it running on Windows Server 2008. On Tue, Jan 26,

[IronPython] IronPython 2.6 CodePlex Source Update

2010-01-27 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/63611. MODIFIED SOURCES $/IronPython/IronPython_Main/Src/IronPython/Lib/iptest/test_env

[IronPython] bug with closure in coroutine

2010-01-27 Thread Ronnie Maor
Hi IronPython team, Seems IronPython 2.6 has some problems with compiling coroutines that contain closures: tmp.py: def coroutine(): x = yield 3 def inner(): print 'x=',x inner() c = coroutine() c.next() c.send(10) with CPython: C:\Temp>python tmp.py x= 10 Traceback (most