From c37c49fd5617ffc7cfc37acee2e2737e1c357ca3 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 20 Sep 2015 02:34:03 -0400 Subject: [PATCH] Issue #24199: Add stacklevel to deprecation warning call. --- Lib/idlelib/idlever.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 13c68b89694..3e9f69a3e37 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(' ')]