diff options
author | Aaron Meurer <asmeurer@gmail.com> | 2022-03-29 12:02:11 -0600 |
---|---|---|
committer | Aaron Meurer <asmeurer@gmail.com> | 2022-03-29 12:02:11 -0600 |
commit | 9bd3b6e8f38499dc9f5f44bcf659b21ff30ecea0 (patch) | |
tree | 0407717fe4b3ef8da9fd25fedb883fdfc8a125cb /doc/source/reference | |
parent | a3624db8ed8ae58ba79ef3270be54a194f000adf (diff) | |
download | numpy-9bd3b6e8f38499dc9f5f44bcf659b21ff30ecea0.tar.gz |
Add a note about the array API copy flag to reshape (which is not yet implemented)
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/array_api.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/reference/array_api.rst b/doc/source/reference/array_api.rst index 5ac8166cf..ddaffdcd1 100644 --- a/doc/source/reference/array_api.rst +++ b/doc/source/reference/array_api.rst @@ -703,6 +703,9 @@ Manipulation Functions Differences - **Compatible** - Unlike ``np.transpose``, the ``axis`` keyword argument to ``permute_dims`` is required. + * - ``reshape`` function has a ``copy`` keyword argument + - **Compatible** + - See https://github.com/numpy/numpy/issues/9818. Set Functions Differences ------------------------- |