Add missing parentheses (#1486)
This commit is contained in:
parent
4c5a0d0203
commit
f9ba5a955c
|
@ -277,7 +277,7 @@ error like all other unknown variables.
|
||||||
``Java HotSpot(TM) 64-Bit Server VM, 25.51-b03, Oracle Corporation``
|
``Java HotSpot(TM) 64-Bit Server VM, 25.51-b03, Oracle Corporation``
|
||||||
``Darwin Kernel Version 14.5.0: Wed Jul 29 02:18:53 PDT 2015; root:xnu-2782.40.9~2/RELEASE_X86_64``
|
``Darwin Kernel Version 14.5.0: Wed Jul 29 02:18:53 PDT 2015; root:xnu-2782.40.9~2/RELEASE_X86_64``
|
||||||
* - ``python_version``
|
* - ``python_version``
|
||||||
- ``'.'.join(platform.python_version_tuple()[:2]``
|
- ``'.'.join(platform.python_version_tuple()[:2])``
|
||||||
- ``3.4``, ``2.7``
|
- ``3.4``, ``2.7``
|
||||||
* - ``python_full_version``
|
* - ``python_full_version``
|
||||||
- ``platform.python_version()``
|
- ``platform.python_version()``
|
||||||
|
@ -534,7 +534,7 @@ implementation:
|
||||||
|
|
||||||
- The definition of ``python_version`` was changed from
|
- The definition of ``python_version`` was changed from
|
||||||
``platform.python_version()[:3]`` to
|
``platform.python_version()[:3]`` to
|
||||||
``'.'.join(platform.python_version_tuple()[:2]``, to accommodate potential
|
``'.'.join(platform.python_version_tuple()[:2])``, to accommodate potential
|
||||||
future versions of Python with 2-digit major and minor versions
|
future versions of Python with 2-digit major and minor versions
|
||||||
(e.g. 3.10). [#future_versions]_
|
(e.g. 3.10). [#future_versions]_
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue