summaryrefslogtreecommitdiffstats
path: root/Doc/howto/pyporting.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-12-13 13:48:22 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-12-13 13:48:22 (GMT)
commitbd62f0a6e4705ff6ae627df6afe9d871778f80eb (patch)
treea2e5864e7705ba566c7b6939b1cd32d7b633979b /Doc/howto/pyporting.rst
parent5d3febf0cf845b2bdfc97f3a36c3dea04800992b (diff)
downloadcpython-bd62f0a6e4705ff6ae627df6afe9d871778f80eb.zip
cpython-bd62f0a6e4705ff6ae627df6afe9d871778f80eb.tar.gz
cpython-bd62f0a6e4705ff6ae627df6afe9d871778f80eb.tar.bz2
Issue #23047: Fix typo in pyporting.rst.
Patch by Chaitanya agrawal.
Diffstat (limited to 'Doc/howto/pyporting.rst')
-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