Anubhab Haldar
Anubhab Haldar
I get a ```ImportError: /home/chronum/S4/jmllorens/S4/build/lib.linux-x86_64-3.6/S4.cpython-36m-x86_64-linux-gnu.so: undefined symbol: PyInt_AsLong``` when working with this. Any ideas?
It appears that the porting of the old API to the new one never really completed. I've personally worked around this by hacking together Lua and Python scripts.
From a conversation I vaguely remember from pythran's IRC: I _believe_ (could be wrong) that preliminary tests showed that pythonic (Pythran's backend) is faster than xtensor. Plus, a full switch...
In file pythtest.py which gets compiled to pythtest.so: ```python #pythran export pythtest(float) #pythran export pythtest(float, float) #pythran export pythtest(float, float, float) def pythtest(a, b=10.0, c=10.0): return a + b +...