diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-22 22:55:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-22 22:55:22 (GMT) |
commit | b1f3797450da9970b97d1c514ebc476d563d7cc8 (patch) | |
tree | 80ef16b10be444ab8bb61ea8969b40f3661f1714 | |
parent | 80cb186b4990b7b4c7a6acd8592ec10ad1b39d3a (diff) | |
parent | a71a4f4ed32e9f1c6b43c7ac660dcc58cb0ce9bc (diff) | |
download | cpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.zip cpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.tar.gz cpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.tar.bz2 |
merge 2.7.10 release branch
-rw-r--r-- | Lib/idlelib/idlever.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index b80c479..563d933 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1,4 @@ -IDLE_VERSION = "2.7.10rc1" +"""Unused by Idle: there is no separate Idle version anymore. +Kept only for possible existing extension use.""" +from sys import version +IDLE_VERSION = version[:version.index(' ')] |