diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-20 06:34:51 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-20 06:34:51 (GMT) |
| commit | 5cdc9e1b37678ab4f8b4c986abb993d343badd19 (patch) | |
| tree | abbcb61335ae5cffe2c6cb5a746263daba259353 /Lib/idlelib | |
| parent | b7d276e6478b441357def7e3e3b5f814d7554bc3 (diff) | |
| parent | 86eb7300af07c2981ca8728ca1a36b518d47b3ac (diff) | |
| download | cpython-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.py | 2 |
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(' ')] |
