diff options
-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(' ')] |