[IronPython] IronPython / DLR Direction

2010-08-07 Thread David Seruyange
Just woke up and caught wind of a post that the IronRuby project is not being continued under the auspices of Microsoft (see: http://blog.jimmy.schementi.com/2010/08/start-spreading-news-future-of-jimmy.html). Is the same true of IronPython and are they disbanding the Microsoft team? David ___

[IronPython] IRONPYTHONPATH

2009-11-19 Thread David Seruyange
It's been a while since I've written some IronPython. By reflex/memory I was going to set IRONPYTHONPATH but wondered if anything had changed w/r/t the Python Standard Library. Just for the sake of interest I ran "import this" with IronPython 2.6 RC2 and I do get The Zen of Python. Pretty trite

Re: [IronPython] IronPython in Action Out!

2009-04-10 Thread David Seruyange
Congrats although I was able to get a copy early (about 2 weeks ago) directly from Manning. Paid full price, I hope that somehow trickles back to you :) David On Fri, Apr 10, 2009 at 12:09 PM, Shri Borde wrote: > Congratulations! This is very exciting! > > -Original Message- > From: users

[IronPython] The Overloading Story, IsolatedStorage (Silverlight)

2009-04-05 Thread David Seruyange
Hey everyone, What is the story on overloading with IronPython? From Michael Foord's IronPython in Action p. 208: "[Overloading] largely works seemlessly in IronPython... If IronPython gets it wrong, it's a bug and you should report it on the IronPython mailing list or the issue tracker on t

Re: [IronPython] DLR Hosting, Access to .NET Types

2008-04-17 Thread David Seruyange
-- From: Curt Hagenlocher <[EMAIL PROTECTED]> To: Discussion of IronPython Sent: Thursday, April 17, 2008 11:33:29 PM Subject: Re: [IronPython] DLR Hosting, Access to .NET Types On Thu, Apr 17, 2008 at 9:28 PM, David Seruyange <[EMAIL PROTECTED]> wrote: > > But when using a hosted

Re: [IronPython] DLR Hosting, Access to .NET Types

2008-04-17 Thread David Seruyange
ython] DLR Hosting, Access to .NET Types On Thu, Apr 17, 2008 at 8:33 PM, David Seruyange <[EMAIL PROTECTED]> wrote: > > Are all framework types accessible from a hosted engine? While the module > loads fine using the above code, a reference to the StringBuilder (which > works

[IronPython] DLR Hosting, Access to .NET Types

2008-04-17 Thread David Seruyange
Hello, thanks much to Dino on my last message. After redirecting output and error, I now see the error I was getting explained a little more in depth. I'm executing a script in order to load it as a module. The code is something like this: string p = Path.Combine("path to script");

[IronPython] Redirecting input/output in IronPython 2.x

2008-04-17 Thread David Seruyange
Hey everyone, looking at a lot of the samples online I see the following: pythonEngine.SetStandardError(s); pythonEngine.SetStandardOutput(s);where s is some stream. The Python Engine doesn't seem to support that method when I make a reference to IronPython 2.0. Am I missing someth

Re: [IronPython] Learning IronPython

2008-04-15 Thread David Seruyange
Although it's not yet fully available, the Iron Python in Action book will have a chapter devoted to WPF programming with IronPython. Michael's helped me out a lot so I trust the book will be worth the bucks. Find more here: http://www.manning.com/foord/ David - Original Message Fro

[IronPython] No import this?

2008-01-14 Thread David Seruyange
Does IronPython strip the easter egg? Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping__

[IronPython] Static variables (Python basics)

2007-09-29 Thread David Seruyange
Hey everyone, I'm wondering how one caches things in python in a manner similar to how a static variable or class member might in C#. I can only think of an equivalent in something like a global variable, but is there another? I'm not good enough yet to think in a manner "pythonic" but I've a

[IronPython] dir and urllib (utter newbie questions)

2007-07-14 Thread David Seruyange
I'm very new to Python and had a few questions. Does dir() only work from the ipy interpreter? If I attempt the following: >>> from System import * >>> dir() It sucesssfully prints everything available but when I try the two lines of code from a script and run: ipy test.py Nothing prints.