#4351: more appropriate DeprecationWarning stacklevels
diff --git a/Lib/string.py b/Lib/string.py
index 8667c0e..e071a2d 100644
--- a/Lib/string.py
+++ b/Lib/string.py
@@ -51,7 +51,7 @@
     """
     import warnings
     warnings.warn("string.maketrans is deprecated, use bytes.maketrans instead",
-                  DeprecationWarning)
+                  DeprecationWarning, 2)
     if len(frm) != len(to):
         raise ValueError("maketrans arguments must have same length")
     if not (isinstance(frm, bytes) and isinstance(to, bytes)):