Re: [IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread hellosticky
Thanks _ From: Srivatsn Narayanan [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2008 2:33 PM To: [EMAIL PROTECTED]; 'Discussion of IronPython' Subject: RE: [IronPython] Compiling into a DLL with pyc.py and then calling the class -Original Message

Re: [IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread Srivatsn Narayanan
-Original Message- From: hellosticky [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2008 11:22 AM To: Srivatsn Narayanan; 'Discussion of IronPython' Subject: RE: [IronPython] Compiling into a DLL with pyc.py and then calling the class Thanks to both Srivatsn and Mic

Re: [IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread hellosticky
> -Original Message- > From: Srivatsn Narayanan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 26, 2008 2:15 PM > To: [EMAIL PROTECTED]; Discussion of IronPython > Subject: RE: [IronPython] Compiling into a DLL with pyc.py > and then calling the class > > You

Re: [IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread Michael Foord
hellosticky wrote: Hi, I'm new to IronPython. I have the following test.py: from System import * from System.Collections.Generic import * from System.Text import * from PublicDomain import * class test: def foo(self): return GlobalConstants.EarthEquatorialRadiusInKilomet

Re: [IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread Srivatsn Narayanan
--Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of hellosticky Sent: Tuesday, August 26, 2008 11:07 AM To: IronPython Subject: [IronPython] Compiling into a DLL with pyc.py and then calling the class Hi, I'm new to IronPython. I have the following test.p

[IronPython] Compiling into a DLL with pyc.py and then calling the class

2008-08-26 Thread hellosticky
Hi, I'm new to IronPython. I have the following test.py: from System import * from System.Collections.Generic import * from System.Text import * from PublicDomain import * class test: def foo(self): return GlobalConstants.EarthEquatorialRadiusInKilometers PublicDomain is