From: Senthil Kumaran Date: Sun, 17 Oct 2010 11:42:21 +0000 (+0000) Subject: Syntax fixes for examples in the Doc/includes X-Git-Tag: v3.2a4~473 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c961322f4fb8f3b67096b164aa49eec62eef5165;p=python Syntax fixes for examples in the Doc/includes --- diff --git a/Doc/includes/email-headers.py b/Doc/includes/email-headers.py index 664c3ff1ca..a53317dbd8 100644 --- a/Doc/includes/email-headers.py +++ b/Doc/includes/email-headers.py @@ -12,6 +12,6 @@ headers = Parser().parsestr('From: \n' 'Body would go here\n') # Now the header items can be accessed as a dictionary: -print 'To: %s' % headers['to'] -print 'From: %s' % headers['from'] -print 'Subject: %s' % headers['subject'] +print('To: %s' % headers['to']) +print('From: %s' % headers['from']) +print('Subject: %s' % headers['subject']) diff --git a/Doc/includes/sqlite3/load_extension.py b/Doc/includes/sqlite3/load_extension.py index 7f893c9286..015aa0de8c 100644 --- a/Doc/includes/sqlite3/load_extension.py +++ b/Doc/includes/sqlite3/load_extension.py @@ -23,4 +23,4 @@ con.executescript(""" insert into recipe (name, ingredients) values ('pumpkin pie', 'pumpkin sugar flour butter'); """) for row in con.execute("select rowid, name, ingredients from recipe where name match 'pie'"): - print row + print(row)