[Ironpython-users] IronPython, Daily Digest 9/18/2012

2012-09-19 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New comment] sys.stdout.isatty() always returns True 2. [New comment] sys.stdout.isatty() always returns True -- ISSUES 1. [New comment] sys

[Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Dino Viehland
We're pleased to announce the release of Python Tools for Visual Studio 1.5 RC. Python Tools for Visual Studio (PTVS) is an open-source plug-in for Visual Studio which supports programming with the Python language. PTVS supports a broad range of f

Re: [Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Slide
On Wed, Sep 19, 2012 at 1:40 PM, Dino Viehland wrote: > We’re pleased to announce the release of Python Tools for Visual Studio 1.5 > RC. Python Tools for Visual Studio (PTVS) is an open-source plug-in for > Visual Studio which supports programming with the Python language. PTVS > supports a broad

Re: [Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Jeff Hardy
On Wed, Sep 19, 2012 at 1:40 PM, Dino Viehland wrote: > We’re pleased to announce the release of Python Tools for Visual Studio 1.5 > RC. Python Tools for Visual Studio (PTVS) is an open-source plug-in for > Visual Studio which supports programming with the Python language. PTVS > supports a broad

Re: [Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Steve Dower
It doesn't currently, but that will probably be a PTVS 2.0 feature. I'm not sure exactly what's involved yet, but I'd guess that all we have to do is invoke MSBuild. You're welcome to code it up yourself and send it in. That will be the quickest way to get it added (and once you're set up to build

Re: [Ironpython-users] Python Tools for Visual Studio 1.5 RC Released

2012-09-19 Thread Jeff Hardy
On Wed, Sep 19, 2012 at 5:35 PM, Steve Dower wrote: > It doesn't currently, but that will probably be a PTVS 2.0 feature. > I'm not sure exactly what's involved yet, but I'd guess that all we > have to do is invoke MSBuild. > > You're welcome to code it up yourself and send it in. That will be the

[Ironpython-users] Separating return values from printed values?

2012-09-19 Thread Doug Blank
IronPython users, Interesting question: we have IronPython embedded in a nice little educational GUI, and have the DLR output sent to our text output window where we can control the font color, etc. In teaching CS, it is always hard to try to get across the difference between a "return value" and

Re: [Ironpython-users] Separating return values from printed values?

2012-09-19 Thread Keith Rome
This might give you what you need (hooking in via the runtime output writer, which is where the print function routes to), it seems to work for my quick test: using System; using System.IO; using System.Text; using IronPython.Hosting; namespace ConsoleApplication3 { class Program {