aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-18 03:36:57 -0700
committerEric V. Smith <ericvsmith@users.noreply.github.com>2019-09-18 06:36:57 -0400
commitc47c8ba2969c9faf1c036b3dc4b0a5cf0d3aa0cc (patch)
treed442b812d5f39f6757335b1199240d709ea6a4f3
parent[2.7] bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-... (diff)
downloadcpython-c47c8ba2969c9faf1c036b3dc4b0a5cf0d3aa0cc.tar.gz
cpython-c47c8ba2969c9faf1c036b3dc4b0a5cf0d3aa0cc.tar.bz2
cpython-c47c8ba2969c9faf1c036b3dc4b0a5cf0d3aa0cc.zip
bpo-37904: Edition on python tutorial - section 4 (GH-16169) (GH-16236)
A little change on first paragraph of python tutorial to be more clearly https://bugs.python.org/issue37904 Automerge-Triggered-By: @ericvsmith (cherry picked from commit b57481318e3e3cbacd398b898f9849ec8f2d7eec) Co-authored-by: Diego Alberto Barriga MartĂ­nez <diegobarriga@protonmail.com>
-rw-r--r--Doc/tutorial/controlflow.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index c1c3d28fd0..2e1c1222ce 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -4,8 +4,8 @@
More Control Flow Tools
***********************
-Besides the :keyword:`while` statement just introduced, Python knows the usual
-control flow statements known from other languages, with some twists.
+Besides the :keyword:`while` statement just introduced, Python uses the usual
+flow control statements known from other languages, with some twists.
.. _tut-if: