[Ironpython-users] IronPython, Daily Digest 2/12/2012

2012-02-13 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New comment] Enable running Python scripts on Windows Phone 7 2. [Status update] Tracking: Windows Mobile Support 3. [Status update] Add numpy ---

Re: [Ironpython-users] fix for problem with lost working directory in compiled ironPython

2012-02-13 Thread Jeff Hardy
On Sun, Feb 12, 2012 at 4:09 PM, Peter Schwalm wrote: > How can I submit it to the developpers so that it can be included in the > next release of IronPython? Ideally, the steps are similar to http://www.hanselman.com/blog/GetInvolvedInOpenSourceTodayHowToContributeAPatchToAGitHubHostedOpenSource

[Ironpython-users] IronPython 2.7.2 Alpha 2 Available

2012-02-13 Thread Jeff Hardy
On behalf of the IronPython team, I'm happy to announce the second preview release of IronPython 2.7.2 is available at http://ironpython.codeplex.com/releases/view/81331. Like all IronPython 2.7-series releases, .NET 4 is required to install it. Installing this release will replace any existing Ir

[Ironpython-users] IronPython Mobile Support

2012-02-13 Thread Jeff Hardy
The latest version of IronPython includes support for Android and Window Phone 7.5 devices. These are some rough notes for anyone who's interested: Android -- Supports full code generation and almost every feature. WP7 - Does not support creating types at runtime. The biggest limitati

[Ironpython-users] How can I detect whether I am running ipy.exe or ipy64.exe?

2012-02-13 Thread Vernon Cole
I am testing adodbapi with IPy 2.7.2a2 -- using my new laptop which I have set up as an everything in 64-bit test bed. My default test database is an .mdb (so-called ACCESS database) file. Microsoft has decided that the JET engine, which has historically been used to read and write that format is

Re: [Ironpython-users] How can I detect whether I am running ipy.exe or ipy64.exe?

2012-02-13 Thread Dino Viehland
You can either check System.IntPtr.Size and see if it's 4 or 8 (which is what I've usually done in the past and works on all versions of .NET) or you can check System.Environment.Is64BitProcess (this will read a little better, but is new in .NET 4). From: ironpython-users-bounces+dinov=microsof