From: Zachary Ware Date: Wed, 17 Aug 2016 14:51:20 +0000 (-0500) Subject: Use sys.version_info, not sys.version. X-Git-Tag: v3.6.0b1~681^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54005afeeebddbd5b211307b743b591a4cdb7750;p=thirdparty%2FPython%2Fcpython.git Use sys.version_info, not sys.version. sys.version[0] gives a string, which fails > comparison with 2. Reported by Arne Maximilian Richter on docs@ --- diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index c479f2264e95..696f8e786892 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -299,7 +299,7 @@ access e.g. the ``importlib.abc`` module by doing the following:: import sys - if sys.version[0] == 3: + if sys.version_info[0] == 3: from importlib import abc else: from importlib2 import abc @@ -311,7 +311,7 @@ Python 2:: import sys - if sys.version[0] > 2: + if sys.version_info[0] > 2: from importlib import abc else: from importlib2 import abc