summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-12-13 15:48:22 +0200
committerBerker Peksag <berker.peksag@gmail.com>2014-12-13 15:48:22 +0200
commit8700675982e8d06601af90b712004a57c772062e (patch)
treea904bc6a9abab343e06315130683a29d6e607005 /Doc
parentb77de161a318e25287cffede66d51a39a5ea12ab (diff)
downloadcpython-8700675982e8d06601af90b712004a57c772062e.tar.gz
Issue #23047: Fix typo in pyporting.rst.
Patch by Chaitanya agrawal.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/pyporting.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
index 624537c78d..59c127ea80 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