Re: [Ironpython-users] cython-for-ironpython

2014-06-04 Thread Doug Blank
On Wed, Jun 4, 2014 at 10:46 AM, Pawel Jasinski wrote: > I have sorted it out. The cython-for-ironpython works as long as you stay > with functionality used by numpy/scipy. Picking random test may expose > thing which were simply not implemented. > There is no dependency on ironclad. > CallSite c

Re: [Ironpython-users] cython-for-ironpython

2014-06-04 Thread Pawel Jasinski
I have sorted it out. The cython-for-ironpython works as long as you stay with functionality used by numpy/scipy. Picking random test may expose thing which were simply not implemented. There is no dependency on ironclad. CallSite comes out of System.Core assembly - missing reference. --pawel _

Re: [Ironpython-users] cython-for-ironpython

2014-06-03 Thread Markus Schaber
Hi, Pawel, IronPython has completely different inner workings than cPython. It uses .NET and the DLR infrastructure (memory management, objects, etc..) instead of the C-implemented Infrastructure provided by cPython. Two projects tried to bridge the gap between cPython and IronPython / .NET ht