summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-22 22:55:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-05-22 22:55:22 (GMT)
commitb1f3797450da9970b97d1c514ebc476d563d7cc8 (patch)
tree80ef16b10be444ab8bb61ea8969b40f3661f1714
parent80cb186b4990b7b4c7a6acd8592ec10ad1b39d3a (diff)
parenta71a4f4ed32e9f1c6b43c7ac660dcc58cb0ce9bc (diff)
downloadcpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.zip
cpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.tar.gz
cpython-b1f3797450da9970b97d1c514ebc476d563d7cc8.tar.bz2
merge 2.7.10 release branch
-rw-r--r--Lib/idlelib/idlever.py5
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(' ')]