diff options
-rw-r--r-- | doc/release/upcoming_changes/14794.deprecation.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/14794.deprecation.rst b/doc/release/upcoming_changes/14794.deprecation.rst new file mode 100644 index 000000000..23a147cdb --- /dev/null +++ b/doc/release/upcoming_changes/14794.deprecation.rst @@ -0,0 +1,7 @@ +Deprecate automatic ``dtype=object`` for ragged input +----------------------------------------------------- +Calling ``np.array([[1, [1, 2, 3]])`` will issue a ``DeprecationWarning`` as +per `NEP 34`_. Users should explicitly use ``dtype=object`` to avoid the +warning. + +.. _`NEP 34`: http://www.numpy.org/neps |