Skip to content

Commit 1e66f56

Browse files
committed
merge with 3.2
2 parents 54af1ba + 1532c8f commit 1e66f56

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Doc/tutorial/introduction.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -593,13 +593,13 @@ This example introduces several new features.
593593
and ``!=`` (not equal to).
594594

595595
* The *body* of the loop is *indented*: indentation is Python's way of grouping
596-
statements. Python does not (yet!) provide an intelligent input line editing
597-
facility, so you have to type a tab or space(s) for each indented line. In
598-
practice you will prepare more complicated input for Python with a text editor;
599-
most text editors have an auto-indent facility. When a compound statement is
600-
entered interactively, it must be followed by a blank line to indicate
601-
completion (since the parser cannot guess when you have typed the last line).
602-
Note that each line within a basic block must be indented by the same amount.
596+
statements. At the interactive prompt, you have to type a tab or space(s) for
597+
each indented line. In practice you will prepare more complicated input
598+
for Python with a text editor; all decent text editors have an auto-indent
599+
facility. When a compound statement is entered interactively, it must be
600+
followed by a blank line to indicate completion (since the parser cannot
601+
guess when you have typed the last line). Note that each line within a basic
602+
block must be indented by the same amount.
603603

604604
* The :func:`print` function writes the value of the expression(s) it is
605605
given. It differs from just writing the expression you want to write (as we did

0 commit comments

Comments
 (0)