diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2017-02-24 10:47:34 (GMT) |
---|---|---|
committer | Marc-Andre Lemburg <mal@lemburg.com> | 2017-02-24 10:47:34 (GMT) |
commit | 6059ce45aa96f52fa0150e68ea655fbfdc25609a (patch) | |
tree | 4b39ee6a0d212ff037b8315cc0f072f892b0db60 /Lib/platform.py | |
parent | 41cea70aa38de50c1d714209aa2b7694d86a7e0c (diff) | |
download | cpython-6059ce45aa96f52fa0150e68ea655fbfdc25609a.zip cpython-6059ce45aa96f52fa0150e68ea655fbfdc25609a.tar.gz cpython-6059ce45aa96f52fa0150e68ea655fbfdc25609a.tar.bz2 |
bpo-27788 : synchronise platform.py version number (#246)
Was bumped in the docstring by b9f4feab1b9c9ffa8ea29af3d82bc536f9f3005a
but not in `__version__`
Diffstat (limited to 'Lib/platform.py')
-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 |