diff options
author | mattip <matti.picus@gmail.com> | 2019-09-09 22:55:43 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-09-09 22:55:43 +0300 |
commit | 4ee28be800ba23c2bda88b0dfa890eec9a9fc19f (patch) | |
tree | f3361f370b8828af8581ea722e6d87dd888e0b54 /doc | |
parent | 2903d86b9bdfa6310313296957a9672dbf953797 (diff) | |
download | numpy-4ee28be800ba23c2bda88b0dfa890eec9a9fc19f.tar.gz |
MAINT: use tmp pointers to allow early break; add tests, release note
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/14464.improvement.rst | 6 |
1 files changed, 6 insertions, 0 deletions
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``). + |