diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-02-27 16:14:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 16:14:11 (GMT) |
commit | bb59d89ceeb1abfb4d73c7fc60b534e4464adf35 (patch) | |
tree | 2e9cae33588ab02ae815843a1287349e1d4a4694 | |
parent | 53039ad3814a8918c5311f37bd654428b9843fcc (diff) | |
download | cpython-bb59d89ceeb1abfb4d73c7fc60b534e4464adf35.zip cpython-bb59d89ceeb1abfb4d73c7fc60b534e4464adf35.tar.gz cpython-bb59d89ceeb1abfb4d73c7fc60b534e4464adf35.tar.bz2 |
bpo-27788 : synchronise platform.py version number (#246) (#341)
Was bumped in the docstring by b9f4feab1b9c9ffa8ea29af3d82bc536f9f3005a
but not in `__version__`
(cherry picked from commit 6059ce45aa96f52fa0150e68ea655fbfdc25609a)
-rwxr-xr-x | Lib/platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index e48ad0b..0623475 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -110,7 +110,7 @@ __copyright__ = """ """ -__version__ = '1.0.7' +__version__ = '1.0.8' import collections import sys, os, re, subprocess |