diff options
author | James Sanders <J-Sand@users.noreply.github.com> | 2016-11-04 19:46:01 +0000 |
---|---|---|
committer | James Sanders <J-Sand@users.noreply.github.com> | 2016-11-24 21:00:59 +0000 |
commit | 9fe73dda45e711fe61eb88ed15afca12bdaba8b2 (patch) | |
tree | 08cf5ca8dfb1e3e050efe8a2d90c8db0c81edeeb /doc | |
parent | 2075e1fee6091176052c9ae4cf7f8ea9b9a31c9e (diff) | |
download | numpy-9fe73dda45e711fe61eb88ed15afca12bdaba8b2.tar.gz |
BUG: add checks for some invalid structured dtypes.
Fixes #2865.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.13.0-notes.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst index bd5be6859..b9f49b196 100644 --- a/doc/release/1.13.0-notes.rst +++ b/doc/release/1.13.0-notes.rst @@ -27,6 +27,15 @@ Future Changes Compatibility notes =================== +Tuple object dtypes +~~~~~~~~~~~~~~~~~~~ + +Support has been removed for certain obscure dtypes that were unintentionally +allowed, of the form ``(old_dtype, new_dtype)``, where either of the dtypes +is or contains the ``object`` dtype. As an exception, dtypes of the form +``(object, [('name', object)])`` are still supported due to evidence of +existing use. + DeprecationWarning to error ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |