summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/interpreter.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-03-28 23:39:45 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-03-28 23:39:45 (GMT)
commit9c5e98ff291f7877100d05d744134a8b6f37294e (patch)
tree2643dda3534bef1cf5c33d867bcfedb2b448f9f1 /Doc/tutorial/interpreter.rst
parent9effd1f5fb814fcdb6e8072e2afbf841bdb19d61 (diff)
parent4ab532bbfeb6dd6c9804996e19b665b22de65d56 (diff)
downloadcpython-9c5e98ff291f7877100d05d744134a8b6f37294e.zip
cpython-9c5e98ff291f7877100d05d744134a8b6f37294e.tar.gz
cpython-9c5e98ff291f7877100d05d744134a8b6f37294e.tar.bz2
merge
Diffstat (limited to 'Doc/tutorial/interpreter.rst')
-rw-r--r--Doc/tutorial/interpreter.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst
index 6625010..4df7368 100644
--- a/Doc/tutorial/interpreter.rst
+++ b/Doc/tutorial/interpreter.rst
@@ -106,7 +106,7 @@ before printing the first prompt::
Continuation lines are needed when entering a multi-line construct. As an
example, take a look at this :keyword:`if` statement::
- >>> the_world_is_flat = 1
+ >>> the_world_is_flat = True
>>> if the_world_is_flat:
... print("Be careful not to fall off!")
...