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.

作者 brett.cannon
收信人 benjamin.peterson, brett.cannon, eric.araujo, ezio.melotti, r.david.murray, vstinner
日期 2013-05-04.18:38:33
SpamBayes Score -1.0
Marked as misclassified
Message-id <1367692713.21.0.483447162921.issue17177@psf.upfronthosting.co.za>
In-reply-to
内容
While thinking about asking on G+ for feedback, I realized that if I get this to the point of a module-level warning, it won't be a big deal. It would be just like warnings you deal with when supporting old versions of Python along with newer versions where things are now deprecated. That way  users of imp could just do::

with warnings.catch_warnings():
    warnings.simplefilter("ignore")
    import imp

and be done with it. This means still striving to deprecate every function in imp so that it can all be replaced with a single module-level deprecation is a reasonable goal to have.
历史
日期 用户 动作 参数
2013-05-04 18:38:33brett.cannon修改recipients: + brett.cannon, vstinner, benjamin.peterson, ezio.melotti, eric.araujo, r.david.murray
2013-05-04 18:38:33brett.cannon修改messageid: <1367692713.21.0.483447162921.issue17177@psf.upfronthosting.co.za>
2013-05-04 18:38:33brett.cannon链接issue17177 messages
2013-05-04 18:38:33brett.cannon创建