]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typos (#124409)
authorXie Yanbo <xieyanbo@gmail.com>
Tue, 24 Sep 2024 06:19:25 +0000 (14:19 +0800)
committerGitHub <noreply@github.com>
Tue, 24 Sep 2024 06:19:25 +0000 (23:19 -0700)
Misc/NEWS.d/next/Core_and_Builtins/2024-08-23-11-26-54.gh-issue-122298.ZMyln4.rst
Misc/NEWS.d/next/Library/2024-08-22-09-37-48.gh-issue-123213.owmXnP.rst
Misc/NEWS.d/next/Library/2024-09-13-10-34-19.gh-issue-123934.yMe7mL.rst

index e7645bfc5f323d5337355dadafdd4f993e957a91..722f69616b6b1b0f41640006d9e502548d602a4d 100644 (file)
@@ -1,3 +1,3 @@
 Restore printout of GC stats when ``gc.set_debug(gc.DEBUG_STATS)`` is
-called. This featue was accidentally removed when implementing incremental
+called. This feature was accidentally removed when implementing incremental
 GC.
index 6bbd194b916ec48e65c211fc85d66966285c43b2..5a31a00f2758f426871828e1f43fe251d0df91c7 100644 (file)
@@ -1,3 +1,3 @@
 :meth:`xml.etree.ElementTree.Element.extend` and
 :class:`~xml.etree.ElementTree.Element` assignment no longer hide the internal
-exception if an erronous generator is passed. Patch by Bar Harel.
+exception if an erroneous generator is passed. Patch by Bar Harel.
index cec7741bcabbda9ab1878943254e238b15f1f38c..641c21331e3e5417e79a03c27c53b04bc02a4466 100644 (file)
@@ -1,2 +1,2 @@
-Fix :class:`unittest.mock.MagicMock` reseting magic methods return values
+Fix :class:`unittest.mock.MagicMock` resetting magic methods return values
 after ``.reset_mock(return_value=True)`` was called.