blob: 13c68b896949d0eefa0c9ab203b12a14d367842e [file] [log] [blame]
Terry Jan Reedye1d38b02015-09-09 02:10:10 -04001"""
2The separate Idle version was eliminated years ago;
3idlelib.idlever is no longer used by Idle
4and will be removed in 3.6 or later. Use
5 from sys import version
6 IDLE_VERSION = version[:version.index(' ')]
7"""
8# Kept for now only for possible existing extension use
9import warnings as w
10w.warn(__doc__, DeprecationWarning)
Benjamin Petersona71a4f42015-05-22 17:53:06 -050011from sys import version
12IDLE_VERSION = version[:version.index(' ')]