Re: [Ironpython-users] IronPython Mobile Support

2012-02-15 Thread Bernd Viehmann
Hello. Is there any web-resource to get an idea how to develop mobile solutions with iron-python. That would be very interesting for me. Thanks and kind regards Bernd Viehmann 2012/2/15 Jeff Hardy > On Tue, Feb 14, 2012 at 6:29 PM, Dino Viehland > wrote: > > There's still subclassing after

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

2012-02-15 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New comment] ImportError: No module named Tkinter 2. [Status update] Import System does not work when script called from C# -- ISSUES 1. [Ne

Re: [Ironpython-users] IronPython Mobile Support

2012-02-15 Thread Jeff Hardy
On Wed, Feb 15, 2012 at 2:07 AM, Bernd Viehmann wrote: > Hello. > > Is there any web-resource to get an idea how to develop mobile solutions > with iron-python. That would be very interesting for me. Sort of, but not really. Embedding IronPython in a mobile app is exactly like embedding it in a

[Ironpython-users] should 64 bit sys.maxsize be fixed?

2012-02-15 Thread Vernon Cole
Should this be fixed in a future version? C:\Users\vernon>c:\python32\python.exe Python 3.2.2 (default, Sep 4 2011, 09:07:29) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.maxsize 9223372036854775807 >>> exit()

Re: [Ironpython-users] should 64 bit sys.maxsize be fixed?

2012-02-15 Thread Jeff Hardy
It's actually correct. Arrays in .NET 64-bit are still limited to 2147483647 elements[1], so the value is accurate. - Jeff [1] http://stackoverflow.com/questions/2338778/what-is-the-maximum-length-of-an-array-in-net-on-64-bit-windows On Wed, Feb 15, 2012 at 11:53 AM, Vernon Cole wrote: > > Sho

Re: [Ironpython-users] should 64 bit sys.maxsize be fixed?

2012-02-15 Thread Vernon Cole
Thanks, Jeff, that sheds proper light on the subject. I now have it through my head what "maxsize" means. I was hoping for a single test which would detect 64-bit-ed-ness in both Iron and C Python, but it was not to be. Looks like I'll have to detect platform first before testing for word size.