[IronPython] word Automation

2005-05-08 Thread kbond
Hello, First congratulation of all, thank you for the tremendous work that you have already done. I am looking forward the day where I will be able to translate all my MS office automation in python scripts. Am I correct I say that iron python will allow it? So today I try to give it a try but

RE: [IronPython] Pythalon

2005-05-08 Thread John Gossman
Try this: http://www.johngossman.net/PythalonSample.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith J. Farmer Sent: Sunday, May 08, 2005 12:19 PM To: Discussion of IronPython Subject: RE: [IronPython] Pythalon Ask Gossman -- I just forward th

Re: [IronPython] lambda form

2005-05-08 Thread Timothy Fitz
On 5/8/05, Luis M. Gonzalez <[EMAIL PROTECTED]> wrote: > Regarding lambda, map and reduce, Guido Van Rossum has said several times > that these built-ins are amongst its "Python regrets". > > This is what he said in a recent interview: > > - If you could change some things that have been done i

RE: [IronPython] Pythalon

2005-05-08 Thread Keith J. Farmer
Ask Gossman -- I just forward the URL. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Travis Watkins Screenshot? ___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.iro

Re: [IronPython] Pythalon

2005-05-08 Thread Travis Watkins
On 5/8/05, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > > > > IronPython + Avalon experiment … > > http://blogs.msdn.com/johngossman/archive/2005/05/08/415505.aspx > > > ___ > users-ironpython.com mailing list > users-ironpython.com@lists.ironp

[IronPython] Pythalon

2005-05-08 Thread Keith J. Farmer
IronPython + Avalon experiment … http://blogs.msdn.com/johngossman/archive/2005/05/08/415505.aspx   ___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.c

[IronPython] lambda form

2005-05-08 Thread Luis M. Gonzalez
Regarding lambda, map and reduce, Guido Van Rossum has said several times that these built-ins are amongst its "Python regrets".   This is what he said in a recent interview:   - If you could change some things that have been done in the  langage, what would it be ?Drop lambda, filter, map

Re: [IronPython] System.Exception: can't convert 66.6 to System.Int32

2005-05-08 Thread Travis Watkins
On 5/8/05, PhiHo Hoang <[EMAIL PROTECTED]> wrote: > Jim Hugunin wrote: > > > PhiHo Hoang wrote: > > > Why 66.6 cannot be converted to System.Int32 ? > > 66.6 can be both explicitly converted to an int and compared to one. > > >>>> int(66.6) > >66 > >>>> 12 < 66.6 > >True > >

Re: [IronPython] System.Exception: can't convert 66.6 to System.Int32

2005-05-08 Thread PhiHo Hoang
Jim Hugunin wrote: PhiHo Hoang wrote: > Why 66.6 cannot be converted to System.Int32 ? 66.6 can be both explicitly converted to an int and compared to one. >>> int(66.6) 66 >>> 12 < 66.6 True >>> 66.6 < 12 False It's a good thing that 66.6 won't be implicitly converted to an

Re: [IronPython] lambda form

2005-05-08 Thread PhiHo Hoang
Jim Hugunin wrote: March Liu wrote: > lambda key word may remove from CPython 3.0. Maybe we can replace it > by the other way as List Comprehensions, funcation Factory... I like to encourage people who come from a functional background to use list comprehensions instead of lambda when possible. I