From 4ee28be800ba23c2bda88b0dfa890eec9a9fc19f Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 9 Sep 2019 22:55:43 +0300 Subject: MAINT: use tmp pointers to allow early break; add tests, release note --- doc/release/upcoming_changes/14464.improvement.rst | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 doc/release/upcoming_changes/14464.improvement.rst (limited to 'doc') diff --git a/doc/release/upcoming_changes/14464.improvement.rst b/doc/release/upcoming_changes/14464.improvement.rst new file mode 100644 index 000000000..36ee4090b --- /dev/null +++ b/doc/release/upcoming_changes/14464.improvement.rst @@ -0,0 +1,6 @@ +`numpy.matmul` with boolean output now converts to boolean values +----------------------------------------------------------------- +Calling `numpy.matmul` where the output is a boolean array would fill the array +with uint8 equivalents of the result, rather than 0/1. Now it forces the output +to 0 or 1 (``NPY_TRUE`` or ``NPY_FALSE``). + -- cgit v1.2.1