Re: [IronPython] Platform comparison

2009-08-03 Thread Dody Gunawinata
For grammar engine, language development process, etc, there are a bunch of efforts notably the M language, albeit far more ambitious than just a language toolkit. Both are providing facilities for interoperability between dynamic languages (e.g. calling Python libraries from Perl) Both are

Re: [IronPython] Platform comparison

2009-08-03 Thread Bruce Bromberek
On Sun, Aug 2, 2009 at 11:36 PM, Matthew Wilson diakop...@gmail.com wrote: Unripened fruit from the peanut gallery: Pynie would be a 3-years more appropriate example of a Python implementation on Parrot: see http://code.google.com/p/pynie/source/list -Matthew Wilson

Re: [IronPython] Platform comparison

2009-08-03 Thread Bruce Bromberek
Lets try this a second time :) Thanks for the link. I did not know about pynie. And if you don't know about it already, its effectively invisible for a google search of python+parrot+vm. Parrot.org only links to pirate (which the nightly build shows 14 failed tests and 47 errors out of 62

Re: [IronPython] Platform comparison

2009-08-03 Thread Matthew Wilson
Honestly, I'll contribute to this thread something other than a snide-sounding clarification someday... :) http://www.parrot.org/languages does in fact link to Pynie... On Mon, Aug 3, 2009 at 9:25 AM, Bruce Bromberekbruce.brombe...@gmail.com wrote: Parrot.org only links to pirate

[IronPython] IronPython 2.6 CodePlex Source Update

2009-08-03 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/57576. MODIFIED SOURCES

Re: [IronPython] [ANN]: IronPython 2.6 Beta 2

2009-08-03 Thread Dino Viehland
Ok, I've finally got SQL server setup in a reasonable state where I can try and repro this. This is what I'm trying to do. I have a database called mydatabase which contains a table Table_1 which contains 1 column of type binary(4). I then attempt to do: import System conn =

Re: [IronPython] IronPython ctypes on Linux

2009-08-03 Thread Dino Viehland
Any thoughts on this? I can trivial add a DllImport to dlopen but I need to know where it's declared :) -Original Message- From: users-boun...@lists.ironpython.com [mailto:users- boun...@lists.ironpython.com] On Behalf Of Dino Viehland Sent: Monday, July 27, 2009 3:36 PM To:

Re: [IronPython] IronPython ctypes on Linux

2009-08-03 Thread Slide
I'm not sure if there is standard library that this is implemented on all *NIX platforms. It is possibly different. On Mon, Aug 3, 2009 at 5:10 PM, Dino Viehlanddi...@microsoft.com wrote: Any thoughts on this?  I can trivial add a DllImport to dlopen but I need to know where it's declared :)

Re: [IronPython] IronPython ctypes on Linux

2009-08-03 Thread Seo Sanghyeon
2009/8/4 Slide slide.o@gmail.com: I'm not sure if there is standard library that this is implemented on all *NIX platforms. It is possibly different. No. dlopen and friends are POSIX standard. http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html -- Seo Sanghyeon

Re: [IronPython] IronPython ctypes on Linux

2009-08-03 Thread Seo Sanghyeon
2009/8/4 Dino Viehland di...@microsoft.com: Any thoughts on this?  I can trivial add a DllImport to dlopen but I need to know where it's declared :) I believe libc is the right one. From what I can tell, Mono maps DllImport(libc) to whatever real C library file for the target platform (this

Re: [IronPython] IronPython ctypes on Linux

2009-08-03 Thread Seo Sanghyeon
2009/8/4 Seo Sanghyeon sanx...@gmail.com: 2009/8/4 Dino Viehland di...@microsoft.com: Any thoughts on this?  I can trivial add a DllImport to dlopen but I need to know where it's declared :) I believe libc is the right one. From what I can tell, Mono maps DllImport(libc) to whatever real C