[issue15641] Clean up importlib for Python 3.4

2012-11-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 48228fb874c1 by Andrew Svetlov in branch 'default': Issue #15641: Clean up deprecated classes from importlib http://hg.python.org/cpython/rev/48228fb874c1 -- nosy: +python-dev ___ Python tracker

[issue15641] Clean up importlib for Python 3.4

2012-11-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks, Taras. -- resolution: - fixed stage: commit review - committed/rejected status: open - closed type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15641

[issue15641] Clean up importlib for Python 3.4

2012-11-03 Thread Taras Lyapun
Taras Lyapun added the comment: Deleted code, docs, tests, and tests related stuff (like mocks). Test passes. -- keywords: +patch nosy: +lyapun Added file: http://bugs.python.org/file27852/issue15641.diff ___ Python tracker rep...@bugs.python.org

[issue15641] Clean up importlib for Python 3.4

2012-11-03 Thread Brett Cannon
Brett Cannon added the comment: 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). -- stage: needs patch - commit review ___ Python tracker rep...@bugs.python.org

[issue15641] Clean up importlib for Python 3.4

2012-10-09 Thread Brett Cannon
Brett Cannon added the comment: 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. -- ___ Python tracker

[issue15641] Clean up importlib for Python 3.4

2012-10-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: What's about Finder? Do you want to remove it also? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15641 ___

[issue15641] Clean up importlib for Python 3.4

2012-08-18 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15641 ___

[issue15641] Clean up importlib for Python 3.4

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov andrew.svet...@gmail.com: -- nosy: +asvetlov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15641 ___ ___

[issue15641] Clean up importlib for Python 3.4

2012-08-13 Thread Brett Cannon
New submission from Brett Cannon: 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. --