commit | f9ef9881d778fc5a5889ac36d77b204eab4d7b4e | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon May 26 00:54:22 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Mon May 26 00:54:22 2008 +0000 |
tree | 112e7bde302cf1b3eb7ff057d201d88e5a67f8b0 | |
parent | c15205e93957b3bef18f317a480f8b99213d4870 [diff] [blame] |
update the tutorial to use str.format
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 4b4c819..9b68e57 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst
@@ -445,8 +445,8 @@ up in a tuple. Before the variable number of arguments, zero or more normal arguments may occur. :: - def fprintf(file, format, *args): - file.write(format % args) + def fprintf(file, template, *args): + file.write(template.format(args)) .. _tut-unpacking-arguments: