From 85d8b154fbd43215718e865d87583e86cd5b9887 Mon Sep 17 00:00:00 2001 From: "ezio.melotti" Date: Fri, 25 Sep 2009 20:15:31 +0000 Subject: [PATCH] Merged revisions 75059 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r75059 | ezio.melotti | 2009-09-25 23:14:02 +0300 (Fri, 25 Sep 2009) | 1 line #6998: fix missing () on a print ........ git-svn-id: http://svn.python.org/projects/python/branches/release31-maint@75060 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Doc/tutorial/introduction.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 8db19da6b1..97065afd13 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -222,11 +222,11 @@ Or, strings can be surrounded in a pair of matching triple-quotes: ``"""`` or ``'''``. End of lines do not need to be escaped when using triple-quotes, but they will be included in the string. :: - print """ + print(""" Usage: thingy [OPTIONS] -h Display this usage message -H hostname Hostname to connect to - """ + """) produces the following output: -- 2.11.4.GIT