]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[doc] Fix indentation in inspect documentation (GH-24846) (GH-26288)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 21 May 2021 17:06:58 +0000 (10:06 -0700)
committerGitHub <noreply@github.com>
Fri, 21 May 2021 17:06:58 +0000 (18:06 +0100)
(cherry picked from commit 642fdfdc04e8e40c2cd3e65d67b09fac472bb345)

Co-authored-by: Numerlor <25886452+Numerlor@users.noreply.github.com>
Doc/library/inspect.rst

index b53a9421fbca612b0f3ab729e4a8a02197adc028..d1e4a9b5f30f3d5eb56a622acad0ea3bb7b33a5a 100644 (file)
@@ -809,10 +809,10 @@ function.
          >>> str(param.replace(default=Parameter.empty, annotation='spam'))
          "foo:'spam'"
 
-    .. versionchanged:: 3.4
-        In Python 3.3 Parameter objects were allowed to have ``name`` set
-        to ``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``.
-        This is no longer permitted.
+   .. versionchanged:: 3.4
+      In Python 3.3 Parameter objects were allowed to have ``name`` set
+      to ``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``.
+      This is no longer permitted.
 
 .. class:: BoundArguments