If you have been a user of NumPy.  The easy way to update your code so 
that it compiles even with the latest changes to the naming-scheme is to 
replace

#include "numpy/arrayobject.h"

with

#include "numpy/noprefix.h"

This will generate the prefix-less names (and the other _FLAGS and 
OWN_DATA names that your code may depend on).   It also includes 
arrayobject.h and so there is no need to do that twice.

This should help people who already have code that works with NumPy. 

-Travis



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to