diff options
Diffstat (limited to 'lib/python2.7/idlelib/idlever.py')
-rw-r--r-- | lib/python2.7/idlelib/idlever.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/python2.7/idlelib/idlever.py b/lib/python2.7/idlelib/idlever.py new file mode 100644 index 0000000..3e9f69a --- /dev/null +++ b/lib/python2.7/idlelib/idlever.py @@ -0,0 +1,12 @@ +""" +The separate Idle version was eliminated years ago; +idlelib.idlever is no longer used by Idle +and will be removed in 3.6 or later. Use + from sys import version + IDLE_VERSION = version[:version.index(' ')] +""" +# Kept for now only for possible existing extension use +import warnings as w +w.warn(__doc__, DeprecationWarning, stacklevel=2) +from sys import version +IDLE_VERSION = version[:version.index(' ')] |