blob: 373cecec05ac4d0822f79b290a587d61db9322a0 (
plain)
1
2
3
4
5
6
7
8
|
Same kind casting in concatenate with ``axis=None``
---------------------------------------------------
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.
|