summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2015-02-01 13:53:54 (GMT)
committerStefan Krah <skrah@bytereef.org>2015-02-01 13:53:54 (GMT)
commit363af44a4abff02ece61e456d55824f298448992 (patch)
tree1ecc31d3808152ca2f09ded5594cb715dc32a4c2 /Misc/NEWS
parenta5e1dbef146b9d1aece4e3def828d2b216a07e41 (diff)
downloadcpython-363af44a4abff02ece61e456d55824f298448992.zip
cpython-363af44a4abff02ece61e456d55824f298448992.tar.gz
cpython-363af44a4abff02ece61e456d55824f298448992.tar.bz2
Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity
tests, compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation flag. Previously the function reported false negatives for corner cases.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b725c5d..9552e29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1531,6 +1531,10 @@ Build
C API
-----
+- Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity
+ tests, compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation
+ flag. Previously the function reported false negatives for corner cases.
+
- Issue #22079: PyType_Ready() now checks that statically allocated type has
no dynamically allocated bases.