commit | a394f2dca300c17c1d70b7d6d005af457550cc8e | [log] [tgz] |
---|---|---|
author | Philip Jenvey <pjenvey@underboss.org> | Fri May 08 03:57:12 2009 +0000 |
committer | Philip Jenvey <pjenvey@underboss.org> | Fri May 08 03:57:12 2009 +0000 |
tree | c3d435abd5bddaad590e105556cafa7c6fec4ecb | |
parent | e7d149ecf0ef00902dbb603cafdf20af346a7090 [diff] [blame] |
#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)):