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
---
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
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
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
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
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