summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-07-29 11:31:42 (GMT)
committerGitHub <noreply@github.com>2021-07-29 11:31:42 (GMT)
commit6b922dae6cae9f212d678a36e8b41f2287cf5441 (patch)
tree448c93f3f2c36812f8c4eadcf7b21670b4677c12 /Doc/whatsnew
parentb5bdc0c407d2d0587e591989e390ada9b9709502 (diff)
downloadcpython-6b922dae6cae9f212d678a36e8b41f2287cf5441.zip
cpython-6b922dae6cae9f212d678a36e8b41f2287cf5441.tar.gz
cpython-6b922dae6cae9f212d678a36e8b41f2287cf5441.tar.bz2
bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)
Revert "bpo-41103: Remove old buffer protocol support (GH-21117)" This reverts commit 6f8a6ee59cb7f99f68df8ee9c3e8c8cf19af3eed. (cherry picked from commit ce5e1a6809b714eb0383219190a076d9f883e008) Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.10.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index d84ee13..5af1693 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -2109,11 +2109,6 @@ Deprecated
Removed
-------
-* ``PyObject_AsCharBuffer()``, ``PyObject_AsReadBuffer()``, ``PyObject_CheckReadBuffer()``,
- and ``PyObject_AsWriteBuffer()`` are removed. Please migrate to new buffer protocol;
- :c:func:`PyObject_GetBuffer` and :c:func:`PyBuffer_Release`.
- (Contributed by Inada Naoki in :issue:`41103`.)
-
* Removed ``Py_UNICODE_str*`` functions manipulating ``Py_UNICODE*`` strings.
(Contributed by Inada Naoki in :issue:`41123`.)