Issue 15641: Clean up importlib for Python 3.4 (original) (raw)

Created on 2012-08-13 20:00 by brett.cannon, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue15641.diff lyapun,2012-11-03 13:15 review
Messages (7)
msg168140 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-08-13 20:00
importlib.abc.PyLoader and importlib.abc.PyPycLoader were both deprecated in 3.2 and slated for removal in Python 3.4. There is also some os2 stuff in importlib._bootstrap which can go as PEP 11 has os2 support slated for removal in Python 3.4.
msg172179 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-10-06 11:03
What's about Finder? Do you want to remove it also?
msg172478 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-10-09 13:08
Finder is only documented as deprecated; actually making it work with a reasonable warning is too much of a pain for such little gain. So it can just stay in as there is no maintenance burden.
msg174614 - (view) Author: Taras Lyapun (lyapun) * Date: 2012-11-03 13:15
Deleted code, docs, tests, and tests related stuff (like mocks). Test passes.
msg174648 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-11-03 16:33
Thanks for the patch, Taras! It looks good and I will apply it when I have time (or some other core dev beats me to it).
msg174872 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-11-05 07:34
New changeset 48228fb874c1 by Andrew Svetlov in branch 'default': Issue #15641: Clean up deprecated classes from importlib http://hg.python.org/cpython/rev/48228fb874c1
msg174873 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-11-05 07:35
Thanks, Taras.
History
Date User Action Args
2022-04-11 14:57:34 admin set github: 59846
2012-11-05 07:35:37 asvetlov set status: open -> closedtype: enhancementmessages: + resolution: fixedstage: commit review -> resolved
2012-11-05 07:34:56 python-dev set nosy: + python-devmessages: +
2012-11-03 16:33:46 brett.cannon set messages: + stage: needs patch -> commit review
2012-11-03 13:15:10 lyapun set files: + issue15641.diffnosy: + lyapunmessages: + keywords: + patch
2012-10-09 13:08:02 brett.cannon set messages: +
2012-10-06 11:03:09 asvetlov set messages: +
2012-08-18 13:38:40 Arfrever set nosy: + Arfrever
2012-08-17 16:34:00 asvetlov set nosy: + asvetlov
2012-08-13 20:00:35 brett.cannon create