summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 06:34:51 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 06:34:51 (GMT)
commit5cdc9e1b37678ab4f8b4c986abb993d343badd19 (patch)
treeabbcb61335ae5cffe2c6cb5a746263daba259353 /Lib/idlelib
parentb7d276e6478b441357def7e3e3b5f814d7554bc3 (diff)
parent86eb7300af07c2981ca8728ca1a36b518d47b3ac (diff)
downloadcpython-5cdc9e1b37678ab4f8b4c986abb993d343badd19.zip
cpython-5cdc9e1b37678ab4f8b4c986abb993d343badd19.tar.gz
cpython-5cdc9e1b37678ab4f8b4c986abb993d343badd19.tar.bz2
Merge with 3.5
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/idlever.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py
index 13c68b8..3e9f69a 100644
--- a/Lib/idlelib/idlever.py
+++ b/Lib/idlelib/idlever.py
@@ -7,6 +7,6 @@ and will be removed in 3.6 or later. Use
"""
# Kept for now only for possible existing extension use
import warnings as w
-w.warn(__doc__, DeprecationWarning)
+w.warn(__doc__, DeprecationWarning, stacklevel=2)
from sys import version
IDLE_VERSION = version[:version.index(' ')]