summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-12-13 13:49:01 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-12-13 13:49:01 (GMT)
commite0f4bc7608f9ac63a3f67f0f08afc49128f4fb14 (patch)
tree169adc9e8a7120780a017fd21771acc00833b9ba /Doc
parent7c562f670c4be1e42aec1363992c03f90222890a (diff)
parentbd62f0a6e4705ff6ae627df6afe9d871778f80eb (diff)
downloadcpython-e0f4bc7608f9ac63a3f67f0f08afc49128f4fb14.zip
cpython-e0f4bc7608f9ac63a3f67f0f08afc49128f4fb14.tar.gz
cpython-e0f4bc7608f9ac63a3f67f0f08afc49128f4fb14.tar.bz2
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 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