diff options
author | Stefan Krah <skrah@bytereef.org> | 2015-02-03 15:57:21 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2015-02-03 15:57:21 (GMT) |
commit | 5178d91be09d73900699655b3ddecc0482e7942f (patch) | |
tree | f32b40a9dd880cb573ec7d7003a992d7456277e7 /Misc | |
parent | 72777614287a3f0feaaf1d0987ec275e94ede280 (diff) | |
download | cpython-5178d91be09d73900699655b3ddecc0482e7942f.zip cpython-5178d91be09d73900699655b3ddecc0482e7942f.tar.gz cpython-5178d91be09d73900699655b3ddecc0482e7942f.tar.bz2 |
Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo()
and bytearray_getbuffer(). Both functions now raise BufferError in that
case.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1560,6 +1560,10 @@ Build C API ----- +- Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() + and bytearray_getbuffer(). Both functions now raise BufferError in that + case. + - 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. |