From: Berker Peksag Date: Sat, 13 Dec 2014 13:48:22 +0000 (+0200) Subject: Issue #23047: Fix typo in pyporting.rst. X-Git-Tag: v3.4.3rc1~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd62f0a6e4705ff6ae627df6afe9d871778f80eb;p=python Issue #23047: Fix typo in pyporting.rst. Patch by Chaitanya agrawal. --- 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