summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-21 17:06:41 (GMT)
committerGitHub <noreply@github.com>2021-05-21 17:06:41 (GMT)
commit1886b8496bdf790628bffd4354a0189e8e8e4ff0 (patch)
tree1ca4dced728999f549492584a9eb6dc81c9bf913
parent07dba474c582e61ca455846da7597d4346324e04 (diff)
downloadcpython-1886b8496bdf790628bffd4354a0189e8e8e4ff0.zip
cpython-1886b8496bdf790628bffd4354a0189e8e8e4ff0.tar.gz
cpython-1886b8496bdf790628bffd4354a0189e8e8e4ff0.tar.bz2
[doc] Fix indentation in inspect documentation (GH-24846) (GH-26287)
(cherry picked from commit 642fdfdc04e8e40c2cd3e65d67b09fac472bb345) Co-authored-by: Numerlor <25886452+Numerlor@users.noreply.github.com>
-rw-r--r--Doc/library/inspect.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index b9e8be1..ed33cbb 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -834,10 +834,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