Re: [Ironpython-users] IronPython 2.7.1 Beta 1 now available

2011-06-18 Thread Jeff Hardy
On Sat, Jun 18, 2011 at 10:11 PM, Steve Dower wrote: > Seems the link is actually http://ironpython.codeplex.com/releases/view/68588 Whoops, you're right. > > And a quick note that this doesn't install side-by-side with 2.7 - the > earlier version is uninstalled. (I don't see this as an issue, b

Re: [Ironpython-users] IronPython 2.7.1 Beta 1 now available

2011-06-18 Thread Steve Dower
Seems the link is actually http://ironpython.codeplex.com/releases/view/68588 And a quick note that this doesn't install side-by-side with 2.7 - the earlier version is uninstalled. (I don't see this as an issue, but it was a surprise.) On Sat, Jun 18, 2011 at 22:05, Jeff Hardy wrote: > This is t

[Ironpython-users] IronPython 2.7.1 Beta 1 now available

2011-06-18 Thread Jeff Hardy
This is the first beta release of IronPython 2.7. Like IronPython 2.7, this release requires .NET 4 or Silverlight 4. The highlights of this release are: * Updated the standard library to match CPython 2.7.2. * Add the ast, csv, and unicodedata modules. * Fixed several bugs. * IronPython Tools fo

Re: [Ironpython-users] How can IronPython access a public static value defined in C#?

2011-06-18 Thread Doug Blank
On Sat, Jun 18, 2011 at 1:56 PM, Dino Viehland wrote: [snip] >> Is there something I can do to make white accessible with "from ... import >> *"? > > If you mark the field as readonly we'll let you import it using import *. > Without > it being read-only we don't put it in Graphics.__all__ and

[Ironpython-users] IronPython, Daily Digest 6/17/2011

2011-06-18 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New issue] Iron Python Ver 1.0 DLL's folder ?? 2. [Status update] Iron Python Ver 1.0 DLL's folder ?? 3. [New comment] unicode() can not deal with buffer object in IronPython 4. [Status u

Re: [Ironpython-users] IronPython wiki

2011-06-18 Thread Michael Foord
On 16/06/2011 17:55, Brian Wilson wrote: Do you think there is enough interest to unlock the member feature on the IronPython.info wiki, or should I just talk here? BTW I've dealt with wiki spam by putting Captcha and ConfirmEdit on my wiki and it seems to work. Hey Brian, I turned off editin

Re: [Ironpython-users] How can IronPython access a public static value defined in C#?

2011-06-18 Thread Dino Viehland
Doug wrote: > I asked: > > Consider this C# code: > > public static class Graphics { >  public static Color white = new Color(255, 255, 255); } > > I can compile and import this from IronPython: > > >>> import clr > >>> clr.AddReference("Graphics") > >>> import Graphics > >>> Graphics.white >

Re: [Ironpython-users] How can IronPython access a public static value defined in C#?

2011-06-18 Thread Doug Blank
I asked: Consider this C# code: public static class Graphics {  public static Color white = new Color(255, 255, 255); } I can compile and import this from IronPython: >>> import clr >>> clr.AddReference("Graphics") >>> import Graphics >>> Graphics.white But I can't: >>> import clr >>> clr.Ad