Re: [IronPython] [python] Win32pipe, win32File, Win32api

2007-12-12 Thread Michael Foord
Kaveripakam, Sathish wrote: > HI All, > > I am trying to port python code to the .NET environment using iron python. > > In my existing python code, I have calls to the WIn applications: > > import win32pipe > import win32File > import Win32api Those modules are C extensions compiled for CPy

Re: [IronPython] Win32pipe, win32File, Win32api

2007-12-12 Thread Mark Rees
The win32 modules are Python C extension modules that provide access to various windows api's. Currently IronPython can not use CPython C extensions. But since IronPython has full access to .NET assemblies, there will be calls you would be able to utilise. Mark On Dec 12, 2007 9:50 PM, Kaveripaka

[IronPython] Win32pipe, win32File, Win32api

2007-12-12 Thread Kaveripakam, Sathish
HI All, I am trying to port python code to the .NET environment using iron python. In my existing python code, I have calls to the WIn applications: import win32pipe import win32File import Win32api When I try to execute the above code, it complains "No module named win32xxx". In my system

Re: [IronPython] IronPython Studio

2007-12-12 Thread Kelie
Hello, Does anyone know where to specify library path for standard python modules? In IronPython installation, there is a Lib folder which has a file named site.py. It can be used to specify the library path. In IronPython Studio, I could not figure out how to solve this problem. Thank you!