summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-03-21 11:57:40 (GMT)
committerGitHub <noreply@github.com>2024-03-21 11:57:40 (GMT)
commitea290f8f19db151456f9d52c4c77dd1c30299945 (patch)
tree7514c053acc0106c8a3110e7d916a374cd6f6107
parente84a8f37b1eb1d8c23deb439edcf3e82b1816db3 (diff)
downloadcpython-ea290f8f19db151456f9d52c4c77dd1c30299945.zip
cpython-ea290f8f19db151456f9d52c4c77dd1c30299945.tar.gz
cpython-ea290f8f19db151456f9d52c4c77dd1c30299945.tar.bz2
[3.12] Remove more stray backticks from NEWS files (GH-115374) (#117118)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
-rw-r--r--Misc/NEWS.d/3.12.0a1.rst4
-rw-r--r--Misc/NEWS.d/3.12.0b1.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS.d/3.12.0a1.rst b/Misc/NEWS.d/3.12.0a1.rst
index 5bce9e1..d83b4d3 100644
--- a/Misc/NEWS.d/3.12.0a1.rst
+++ b/Misc/NEWS.d/3.12.0a1.rst
@@ -2722,7 +2722,7 @@ on future on an error - e.g. TimeoutError or KeyboardInterrupt.
Fix a :mod:`sqlite3` regression where ``*args`` and ``**kwds`` were
incorrectly relayed from :py:func:`~sqlite3.connect` to the
:class:`~sqlite3.Connection` factory. The regression was introduced in
-3.11a1 with PR 24421 (:gh:`85128`). Patch by Erlend E. Aasland.`
+3.11a1 with PR 24421 (:gh:`85128`). Patch by Erlend E. Aasland.
..
@@ -2988,7 +2988,7 @@ Kumar Aditya.
.. section: Library
Fix crash in :class:`struct.Struct` when it was not completely initialized
-by initializing it in :meth:`~object.__new__``. Patch by Kumar Aditya.
+by initializing it in :meth:`~object.__new__`. Patch by Kumar Aditya.
..
diff --git a/Misc/NEWS.d/3.12.0b1.rst b/Misc/NEWS.d/3.12.0b1.rst
index 3c1f61c..30ddedb 100644
--- a/Misc/NEWS.d/3.12.0b1.rst
+++ b/Misc/NEWS.d/3.12.0b1.rst
@@ -563,10 +563,10 @@ Complex function calls are now faster and consume no C stack space.
.. nonce: fvgsCl
.. section: Core and Builtins
-``len()`` for 0-dimensional :class:`memoryview`` objects (such as
+``len()`` for 0-dimensional :class:`memoryview` objects (such as
``memoryview(ctypes.c_uint8(42))``) now raises a :exc:`TypeError`.
Previously this returned ``1``, which was not consistent with ``mem_0d[0]``
-raising an :exc:`IndexError``.
+raising an :exc:`IndexError`.
..