___
Ironpython-users mailing list
Ironpython-users@python.org
https://mail.python.org/mailman/listinfo/ironpython-users
Why isn't CPython+NumPy+SciPy (or what you need on top of NumPy)
enough? It's been tested and maintained for a long time, and works
quite well?
It does seem like a daunting task to try and build and maintain
something separate from the mainline NumPy/SciPy community...
On 3 June 2014 13:39, Dou
I've tried to capture all of the links and options towards developing a
numpy for IronPython here:
http://calicoproject.org/Numpy
Please let me know if I have missed something, or if you would like to add
to that page.
My summary so far:
1) a new wrapper (based on IronClad or Cython) would crea
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
-- Forwarded message --
From: Pawel Jasinski
Date: Tue, Jun 3, 2014 at 2:15 PM
Subject: Re: [Ironpython-users] cython-for-ironpython
To: Markus Schaber
sorry I should mention it more explicit, I am trying to resurrect
cython-for-ironpython
https://bitbucket.org/jasonmccampbell/c
Hi,
I am trying to get hello world with cython. I took a simple cnumop.cpp from
tests and run:
ipy cython.py --dotnet tests/compile/cnumop.pyx
The resulting file (cnumop.cpp) is now part of project (cpp/clr/class
library).
After resolving usual reference dependencies I hit: PyErr_Format
Since t