This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients brett.cannon, eric.snow, ncoghlan, serhiy.storchaka, vstinner
Date 2015-09-21.18:22:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442859720.94.0.332591501975.issue25204@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python -Wa Lib/imp.py
sys:1: PendingDeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses

"sys:1:" is output when the stacklevel argument is larger then the deep of the stack.

Following patch stops raising just below the surface.

$ ./python -Wa Lib/imp.py
Lib/imp.py:33: PendingDeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  PendingDeprecationWarning, stacklevel=2)

However I'm not sure that the current behavior is incorrect.
History
Date User Action Args
2015-09-21 18:22:01serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, vstinner, eric.snow
2015-09-21 18:22:00serhiy.storchakasetmessageid: <1442859720.94.0.332591501975.issue25204@psf.upfronthosting.co.za>
2015-09-21 18:22:00serhiy.storchakalinkissue25204 messages
2015-09-21 18:22:00serhiy.storchakacreate