diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-12-13 13:51:18 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-12-13 13:51:18 (GMT) |
commit | 0bf02c8df48c6494a115185943d94ee5f791deb6 (patch) | |
tree | 1caa50beb4180af9a53556d410ee2fd2ee170f7f | |
parent | 91d0a55d956252d44f83b5cf634442bd18223cfc (diff) | |
download | cpython-0bf02c8df48c6494a115185943d94ee5f791deb6.zip cpython-0bf02c8df48c6494a115185943d94ee5f791deb6.tar.gz cpython-0bf02c8df48c6494a115185943d94ee5f791deb6.tar.bz2 |
Issue #23047: Fix typo in pyporting.rst.
Patch by Chaitanya agrawal.
-rw-r--r-- | Doc/howto/pyporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 624537c..59c127e 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -295,7 +295,7 @@ at least the following block of code at the top of it:: from __future__ import absolute_import from __future__ import division - from __future__ import print_statement + from __future__ import print_function from __future__ import unicode_literals You can also run Python 2 with the ``-3`` flag to be warned about various |