summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/release/upcoming_changes/16134.compatibility.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/release/upcoming_changes/16134.compatibility.rst b/doc/release/upcoming_changes/16134.compatibility.rst
index 4270ea271..373cecec0 100644
--- a/doc/release/upcoming_changes/16134.compatibility.rst
+++ b/doc/release/upcoming_changes/16134.compatibility.rst
@@ -1,8 +1,8 @@
Same kind casting in concatenate with ``axis=None``
---------------------------------------------------
-Unlike most `~numpy.concatenate` calls, when no axis
-was given (the ravelled arrays being concatenated)
-previously "unsafe" casting was used.
-This is now deprecated and "same kind" casting will be
-used by default. The new ``casting`` keyword argument
+When `~numpy.concatenate` is called with `axis=None`,
+the flattened arrays were cast with ``unsafe``. Any other axis
+choice uses "same kind". That different default
+has been deprecated and "same kind" casting will be used
+instead. The new ``casting`` keyword argument
can be used to retain the old behaviour.