diff options
author | Stefan Krah <skrah@bytereef.org> | 2015-02-01 13:53:54 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2015-02-01 13:53:54 (GMT) |
commit | 363af44a4abff02ece61e456d55824f298448992 (patch) | |
tree | 1ecc31d3808152ca2f09ded5594cb715dc32a4c2 /Misc/NEWS | |
parent | a5e1dbef146b9d1aece4e3def828d2b216a07e41 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |