[IronPython] IronPython 2.6 CodePlex Source Update

2009-11-18 Thread dfugate
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/61570. ADDED SOURCES $/IronPython/IronPython_2_6/Doc/Chiron.txt MODIFIED SOURCES

Re: [IronPython] Ability to use CPython csv module

2009-11-18 Thread Slide
Are modules things that can be contributed to IP? If I were to go write a compatible _csv module and post it as a patch, would it be accepted? Thanks, slide On Wed, Nov 18, 2009 at 2:16 PM, William Clifford < william.clifford@gmail.com> wrote: > Thanks. That may be an option for a little wh

Re: [IronPython] Ability to use CPython csv module

2009-11-18 Thread William Clifford
Thanks. That may be an option for a little while, at least as far as reading csv files goes. Writing them really shouldn't be too hard to implement, but rather than re-write essentially a library of my code, I think I'll hold off on the switch for a little while, at least until some of the CPython

[IronPython] IronPython 2.6 CodePlex Source Update

2009-11-18 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/61566. ADDED SOURCES $/IronPython/IronPython_2_6/Src/Hosts/SilverLight/Microsoft.Scrip

Re: [IronPython] Ability to use CPython csv module

2009-11-18 Thread Joshua Kramer
Some time ago, William Clifford wrote: "Just curious if anyone has been able to get the CPython csv module to work with IronPython (2.6 rc2)?" I had some csv-involved tasks to complete with IronPython 2.0.2. I did not use CSV from CPython. However, there is another way to do this: http:/

Re: [IronPython] poplib.POP3_SSL OutOfMemory Issue

2009-11-18 Thread Dino Viehland
It might be interesting to run w/ -X:ExceptionDetail to see where the OOM is actually coming from. It could be that there's one giant allocation which is failing or it could be that something's broken and causing a big loop which allocates forever. -X:ExceptionDetail might given an indication

Re: [IronPython] Embedded IronPython 2.6 Module Name

2009-11-18 Thread Dino Viehland
The logic for assigning these is definitely a little bit weird. The theory is that we only assign __name__ if we believe the code being executed is a module. This is to mimic the behavior of exec/eval which doesn't set __name__: >>> x = {'__name__':'foo'} >>> exec 'print "hi"' in x hi >>> x['__

Re: [IronPython] Ability to use CPython csv module

2009-11-18 Thread Dino Viehland
You could try using CPython's _csv w/ IronClad but other than that we still need to implement _csv. If you, or anyone else, would like to see us hurry up and implement this http://ironpython.codeplex.com/WorkItem/View.aspx?WorkItemId=21395 is the bug to vote for. From: users-boun...@lists.iro

[IronPython] Ability to use CPython csv module

2009-11-18 Thread William Clifford
Just curious if anyone has been able to get the CPython csv module to work with IronPython (2.6 rc2)? I use csv regularly for my regular python scripts, and I am exploring the ability to switch over to IronPython, simply for the ability to put together decent GUIs. Not being able to use it throws a

[IronPython] IronPython 2.6 CodePlex Source Update

2009-11-18 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/61563. MODIFIED SOURCES $/IronPython/IronPython_Main/Src/Tests/modules/io_related/re_te