[Python-checkins] cpython (merge 3.4 -> default): Issue #23047: Fix typo in pyporting.rst.
berker.peksag
python-checkins at python.org
Sat Dec 13 14:48:33 CET 2014
https://hg.python.org/cpython/rev/81a56c9e1e1c
changeset: 93870:81a56c9e1e1c
parent: 93868:3a35638bce66
parent: 93869:914e9092984e
user: Berker Peksag <berker.peksag at gmail.com>
date: Sat Dec 13 15:49:01 2014 +0200
summary:
Issue #23047: Fix typo in pyporting.rst.
Patch by Chaitanya agrawal.
files:
Doc/howto/pyporting.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
--- a/Doc/howto/pyporting.rst
+++ b/Doc/howto/pyporting.rst
@@ -295,7 +295,7 @@
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
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list