diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-11-19 12:38:40 -0800 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2020-01-07 12:19:19 -0600 |
commit | 41ff3e945a2fb5bf4c7be2a89b621299f51ec9b3 (patch) | |
tree | ab42bcc0142a309b277cf8ebb4ec2046e6b9c00e /doc/release | |
parent | 33976ed1fb030e45e6f8a3e43d830799cfc0b5d2 (diff) | |
download | numpy-41ff3e945a2fb5bf4c7be2a89b621299f51ec9b3.tar.gz |
MAINT,API: Do not use fasttake slot of ArrFuncs and null it
Always NULL the fasttake slot, and instead move the optimized versions
by doing itemsize specialization in the Take function itself.
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/upcoming_changes/14942.compatibility.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/14942.compatibility.rst b/doc/release/upcoming_changes/14942.compatibility.rst new file mode 100644 index 000000000..41a2457e2 --- /dev/null +++ b/doc/release/upcoming_changes/14942.compatibility.rst @@ -0,0 +1,5 @@ +Fasttake slot is deprecated and now NULL'ed +------------------------------------------- +The fasttake slot for all dtypes is now never used internally +and always set to NULL. No downstream project should be using +this, so no compatibility issue is expected. |