diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-05-13 04:55:24 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-05-13 04:55:24 (GMT) |
commit | 752abd0d3cc66f84f551650b8424248b202a16a4 (patch) | |
tree | f5302f8a246115f3f61a1414a94c8d2ce12a3a01 /Doc/howto/functional.rst | |
parent | 8321f978918e3ae4de18672770c6504dcae82343 (diff) | |
download | cpython-752abd0d3cc66f84f551650b8424248b202a16a4.zip cpython-752abd0d3cc66f84f551650b8424248b202a16a4.tar.gz cpython-752abd0d3cc66f84f551650b8424248b202a16a4.tar.bz2 |
Convert a lot of print statements to print functions in docstrings,
documentation, and unused/rarely used functions.
Diffstat (limited to 'Doc/howto/functional.rst')
-rw-r--r-- | Doc/howto/functional.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index faa0418..c71d038 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -222,10 +222,10 @@ These two statements are equivalent:: for i in iter(obj): - print i + print(i) for i in obj: - print i + print(i) Iterators can be materialized as lists or tuples by using the :func:`list` or :func:`tuple` constructor functions: @@ -709,7 +709,7 @@ obvious :keyword:`for` loop:: containing the count and each element. :: >>> for item in enumerate(['subject', 'verb', 'object']): - ... print item + ... print(item) (0, 'subject') (1, 'verb') (2, 'object') |