From 8f3fb723091ced7ffd4f703f2480f044db5c8bc4 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sun, 29 Jan 2017 10:05:02 +0000 Subject: [PATCH] Issue #29349: Fix Python 2 syntax in documentation build code --- Doc/tools/extensions/patchlevel.py | 4 ++-- Misc/NEWS | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Doc/tools/extensions/patchlevel.py b/Doc/tools/extensions/patchlevel.py index bca2eb8bad7..9558b9ce433 100644 --- a/Doc/tools/extensions/patchlevel.py +++ b/Doc/tools/extensions/patchlevel.py @@ -61,8 +61,8 @@ def get_version_info(): return get_header_version_info('.') except (IOError, OSError): version, release = get_sys_version_info() - print >>sys.stderr, 'Can\'t get version info from Include/patchlevel.h, ' \ - 'using version of this interpreter (%s).' % release + print('Can\'t get version info from Include/patchlevel.h, ' \ + 'using version of this interpreter (%s).' % release, file=sys.stderr) return version, release if __name__ == '__main__': diff --git a/Misc/NEWS b/Misc/NEWS index 6ad85d53232..eac8ba0a17c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -50,6 +50,11 @@ C API Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined. +Documentation +------------- + +- Issue #29349: Fix Python 2 syntax in code for building the documentation. + What's New in Python 3.5.3? ===========================