summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2015-02-03 15:57:21 (GMT)
committerStefan Krah <skrah@bytereef.org>2015-02-03 15:57:21 (GMT)
commit5178d91be09d73900699655b3ddecc0482e7942f (patch)
treef32b40a9dd880cb573ec7d7003a992d7456277e7 /Misc
parent72777614287a3f0feaaf1d0987ec275e94ede280 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bbe7573..c0ec174 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.