Fix module deprecation warnings to have a useful stacklevel

This commit is contained in:
Brett Cannon 2015-03-27 12:56:57 -04:00
parent 79644f9c83
commit 781692ff6a
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ manage and inserting data into the output.
import sys
import warnings
warnings.warn('the formatter module is deprecated and will be removed in '
'Python 3.6', DeprecationWarning)
'Python 3.6', DeprecationWarning, stacklevel=2)
AS_IS = None

View File

@ -29,7 +29,7 @@ import warnings
warnings.warn("the imp module is deprecated in favour of importlib; "
"see the module's documentation for alternative uses",
PendingDeprecationWarning)
PendingDeprecationWarning, stacklevel=2)
# DEPRECATED
SEARCH_ERROR = 0