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 vstinner
Recipients brett.cannon, vstinner
Date 2015-09-18.07:06:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442559979.71.0.954965412351.issue25160@psf.upfronthosting.co.za>
In-reply-to
Content
The imp module is deprecated since Python 3.4. In Python 3.4, imp uses a PendingDeprecationWarning, and Python 3.5... hum, still a PendingDeprecationWarning. It was not supposed to become a real DeprecationWarning?

Anyway, the imp module is still used in some places of the Python stdlib:

Lib/modulefinder.py:14:    import imp
Python/makeopcodetargets.py:9:import imp
Tools/i18n/pygettext.py:159:import imp
Tools/importbench/importbench.py:10:import imp

modulefinder explicitly ignore the warning :-(

with warnings.catch_warnings():
    warnings.simplefilter('ignore', PendingDeprecationWarning)
    import imp
History
Date User Action Args
2015-09-18 07:06:19vstinnersetrecipients: + vstinner, brett.cannon
2015-09-18 07:06:19vstinnersetmessageid: <1442559979.71.0.954965412351.issue25160@psf.upfronthosting.co.za>
2015-09-18 07:06:19vstinnerlinkissue25160 messages
2015-09-18 07:06:19vstinnercreate