Re: [IronPython] Question to IronPython team

2006-05-11 Thread Sylvain Hellegouarch
 Do you plan to include socket module in IronPython before releasing
 IronPython 1.0?

I cannot deny this would be a great decision to be made :D

- Sylvain
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


Re: [IronPython] Inheritance problem

2006-05-11 Thread Yasir Alvi

Seo, thanks for the bug.  I've logged it in our bug database and we'll 
try to get to it for our next Beta.

Thanks,
Yasir

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sanghyeon Seo
Sent: Thursday, May 11, 2006 2:27 AM
To: Discussion of IronPython
Subject: [IronPython] Inheritance problem

# test.py
class C(object): pass
class D(object): pass
class E(D): pass
class F(C, E): pass

# IronPython
TypeError: order for classes object has been seen in the class hierachy before D

Seo Sanghyeon
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


Re: [IronPython] IronPython and LINQ

2006-05-11 Thread Shri Borde
Hi Kevin,

IronPython 1.0 will not support LINQ. We have started to look at it, but will 
seriously look at it after the summer. It is a meaty issue given that many of 
the concepts in LINQ are based on static typing.

Here is the LINQ information for those who haven't seen it yet - 
http://msdn.microsoft.com/data/ref/linq/.

Thanks
Shri

Do you want to help develop Dynamic languages on CLR? 
(http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Chu
Sent: Wednesday, May 10, 2006 7:24 PM
To: Discussion of IronPython
Subject: [IronPython] IronPython and LINQ

LINQ Preview May 2006 released!
Can IronPython use LINQ?

--
Once in a Redmoon
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


Re: [IronPython] IronPython and LINQ

2006-05-11 Thread Kevin Chu

I see that in C# v3 have many dynamic language feature. eg:

Lambda Expressions -PredCustomer = |c| c.City == London;
Expression Trees - ExpressionPredCustomer = |c| c.City == London;
Object Intializers -Contact c = new Contact { Name = Bill, Phone = … };
Anonymous Types -new { Name = Bill, Phone = … }
Type Inference --var c = new { Name = Bill, Phone = … };
Extension Methods--static void Method(this IEnumerableT src)

what policy ms have in dynamic language between c# and IronPython.

2006/5/12, Shri Borde [EMAIL PROTECTED]:

Hi Kevin,

IronPython 1.0 will not support LINQ. We have started to look at it, but will 
seriously look at it after the summer. It is a meaty issue given that many of 
the concepts in LINQ are based on static typing.

Here is the LINQ information for those who haven't seen it yet - 
http://msdn.microsoft.com/data/ref/linq/.

Thanks
Shri

Do you want to help develop Dynamic languages on CLR? 
(http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Chu
Sent: Wednesday, May 10, 2006 7:24 PM
To: Discussion of IronPython
Subject: [IronPython] IronPython and LINQ

LINQ Preview May 2006 released!
Can IronPython use LINQ?

--
Once in a Redmoon
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com




--
Once in a Redmoon
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com