Re: [IronPython] importing os module

2005-11-01 Thread Liam Clarke
Ah pity. Anyone know of a .NET variant on the various popens()? I understand that CPython nt module uses the Win32 API to create pipes, but most .NET code I can find requires both processes to be running on the CLR and to manually connect to the pipe, which limits the versatility somewhat. I'm not

Re: [IronPython] importing os module

2005-11-01 Thread Brian Lloyd
> Others know more than I do, but writing a CPython module in C > interacts very significantly with mechanisms that are > internal to the Python interpreter, and needs to be involved > with the reference-counting mechanism that's the basis of > CPython's garbage collector (when IronPython uses

Re: [IronPython] importing os module

2005-11-01 Thread J. Merrill
C? Surely this would be immensely helpful. > >Regards, >MIke > >-Original Message- >From: "J. Merrill" <[EMAIL PROTECTED]> >Sent: Nov 1, 2005 10:06 AM >To: Discussion of IronPython >Subject: Re: [IronPython] importing os module > >IP does inde

Re: [IronPython] importing os module

2005-11-01 Thread Martin Maly
Sent: Tuesday, November 01, 2005 8:08 AM To: Discussion of IronPython Subject: Re: [IronPython] importing os module Why does it not play with C? Surely this would be immensely helpful. Regards, MIke -Original Message- From: "J. Merrill" <[EMAIL PROTECTED]> Sent: Nov 1,

Re: [IronPython] importing os module

2005-11-01 Thread Michael Gogins
Why does it not play with C? Surely this would be immensely helpful. Regards, MIke -Original Message- From: "J. Merrill" <[EMAIL PROTECTED]> Sent: Nov 1, 2005 10:06 AM To: Discussion of IronPython Subject: Re: [IronPython] importing os module IP does indeed "n

Re: [IronPython] importing os module

2005-11-01 Thread J. Merrill
IP does indeed "not play with C at all". The plan, I believe, is to re-create some common C-based Python libraries (with C# or in Python) to ease the porting. At 02:09 AM 11/1/2005, Liam Clarke wrote >Now, my question on os is, what does IronPython have against pipe() ? >Does IronPython not play

Re: [IronPython] importing os module

2005-10-31 Thread Liam Clarke
; Martin > > > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Papanii Okai > Sent: Friday, October 14, 2005 8:26 PM > To: users@lists.ironpython.com > Subject: [IronPython] importing os module > > > > > >

Re: [IronPython] importing os module

2005-10-31 Thread Martin Maly
located in IronPython's Bin\lib directory)   Martin   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Papanii OkaiSent: Friday, October 14, 2005 8:26 PMTo: users@lists.ironpython.comSubject: [IronPython] importing os module Hi Guys,   I was testing out Iron Pyth

[IronPython] importing os module

2005-10-31 Thread Papanii Okai
Hi Guys,   I was testing out Iron Python and I was trying to test out the OS module but I got the error ..   TraceBack (most recent call last)     At ImportError: No module named os..   Obviously it doesn’t exist. Thus is there any means to get around this?   Than