[IronPython] Ironclad 0.8 released

2009-01-29 Thread William Reade
Hi all I'm delighted to announce the release of Ironclad v0.8 -- the all-singing, all-dancing CPython API compatibility layer for IronPython -- available now from http://code.google.com/p/ironclad/ . Notable improvements over the last release include: * Ironclad is now a neatly

Re: [IronPython] Ironclad 0.8 released

2009-01-29 Thread Dan Shechter
Congratulations... Is x64 fully supported? Shechter. On 29/01/2009, at 13:43, William Reade will...@resolversystems.com wrote: Hi all I'm delighted to announce the release of Ironclad v0.8 -- the all- singing, all-dancing CPython API compatibility layer for IronPython --

Re: [IronPython] Ironclad 0.8 released

2009-01-29 Thread William Reade
Still no x64, although the necessary supporting changes are gradually creeping in. I can't give you a timescale, I'm afraid, but every person who asks me about it pushes it up my priority list :-). Dan Shechter wrote: Congratulations... Is x64 fully supported? Shechter. On

Re: [IronPython] Ironclad 0.8 released

2009-01-29 Thread Dody Gunawinata
One more encouragement :) x64 support is important now that people are migrating to Windows Server 2008 hypervisor VMs to run the web application. Dody G. On Thu, Jan 29, 2009 at 3:12 PM, William Reade will...@resolversystems.comwrote: Still no x64, although the necessary supporting changes

Re: [IronPython] Ironclad 0.8 released

2009-01-29 Thread Michael Foord
Dody Gunawinata wrote: One more encouragement :) x64 support is important now that people are migrating to Windows Server 2008 hypervisor VMs to run the web application. Contributions welcomed. :-) Michael Dody G. On Thu, Jan 29, 2009 at 3:12 PM, William Reade

[IronPython] Handling the import of scripts

2009-01-29 Thread Jeff Slutter
If there a way for me to intercept when IronPython wants to import a script, so I can provide the script text through my own ways. I have a situation where my Python files are not files on the disk, but packed into a zip file. When I go to run a script I can get the source to IronPython to run,

Re: [IronPython] Handling the import of scripts

2009-01-29 Thread Jimmy Schementi
I'm not sure of a way directly from IronPython, but if you're hosting IronPython you can define your own PlatformAdaptationLayer, which is used to re-define platformy things like import. Here's some info on how to do that: http://www.mail-archive.com/users@lists.ironpython.com/msg06079.html.

Re: [IronPython] Handling the import of scripts

2009-01-29 Thread Dave Fugate
Look into using sys.path_hooks and sys.meta_path (see http://www.python.org/dev/peps/pep-0302/). Dave -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Jeff Slutter Sent: Thursday, January 29, 2009 10:24 AM To: