summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--math/py-numexpr/files/patch-numexpr-interpreter.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-numexpr/files/patch-numexpr-interpreter.cpp b/math/py-numexpr/files/patch-numexpr-interpreter.cpp
new file mode 100644
index 000000000000..6fd9735b9231
--- /dev/null
+++ b/math/py-numexpr/files/patch-numexpr-interpreter.cpp
@@ -0,0 +1,11 @@
+--- numexpr/interpreter.cpp.orig 2018-07-12 17:49:43 UTC
++++ numexpr/interpreter.cpp
+@@ -1269,7 +1269,7 @@ NumExpr_run(NumExprObject *self, PyObject *args, PyObj
+ }
+ Py_INCREF(dtypes[0]);
+ a = (PyArrayObject *)PyArray_FromArray(operands[0], dtypes[0],
+- NPY_ARRAY_ALIGNED|NPY_ARRAY_UPDATEIFCOPY);
++ NPY_ARRAY_ALIGNED|NPY_ARRAY_WRITEBACKIFCOPY);
+ if (a == NULL) {
+ goto fail;
+ }