]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix repeated words in Classes tutorial (GH-21455)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 14 Jul 2020 01:49:44 +0000 (18:49 -0700)
committerGitHub <noreply@github.com>
Tue, 14 Jul 2020 01:49:44 +0000 (18:49 -0700)
The phrase "At any time during execution," was repeated twice.

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 4f28f75deefc6e8f65694f96f1a40b0a26fc385d)

Co-authored-by: Paul McMillan <paul@mcmillan.ws>
Doc/tutorial/classes.rst

index 250d2a9ddb416b47e05d5e4eaf5710f3a2252927..685552f99f440e9da8bdd6fb5e02ef50037850fa 100644 (file)
@@ -114,8 +114,8 @@ accessible.  "Directly accessible" here means that an unqualified reference to a
 name attempts to find the name in the namespace.
 
 Although scopes are determined statically, they are used dynamically. At any
-time during execution, At any time during execution, there are 3 or 4 nested
-scopes whose namespaces are directly accessible:
+time during execution, there are 3 or 4 nested scopes whose namespaces are
+directly accessible:
 
 * the innermost scope, which is searched first, contains the local names
 * the scopes of any enclosing functions, which are searched starting with the