diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-10-15 17:56:35 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2019-10-16 09:35:53 +0100 |
commit | ac757b50edbbdb49cf0c1804d7f6273e16d269a4 (patch) | |
tree | f2b11380e78d84552b9c1b417e1c844a9fdf7007 /doc/release | |
parent | 30b2b587d0b33d53cab72b11cb8da5378f277a30 (diff) | |
download | numpy-ac757b50edbbdb49cf0c1804d7f6273e16d269a4.tar.gz |
Followup: Make "same_kind" casting possible for consistency
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/upcoming_changes/14718.compatibility.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/14718.compatibility.rst b/doc/release/upcoming_changes/14718.compatibility.rst index a42a2b388..3d6e71ead 100644 --- a/doc/release/upcoming_changes/14718.compatibility.rst +++ b/doc/release/upcoming_changes/14718.compatibility.rst @@ -1,5 +1,6 @@ ``np.can_cast(np.uint64, np.timedelta64, casting='safe')`` is now ``False`` --------------------------------------------------------------------------- + Previously this was ``True`` - however, this was inconsistent with ``uint64`` not being safely castable to ``int64``, and resulting in strange type resolution. |