Issue 15357: Deprecate redundant pieces of pkgutil

Issue15357

Created on 2012-07-15 02:27 by ncoghlan, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg165488 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2012-07-15 02:27
To set the stage for fixing the regression reported in #15343, I'm going through and clearly marking the parts of pkgutil which should no longer be used now that the default import system is PEP 302 compliant.
msg165511 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-07-15 08:10
New changeset 3987667bf98f by Nick Coghlan in branch 'default':
Take the first step in resolving the messy pkgutil vs importlib edge cases by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ correctly so that runpy still works (Affects #15343, #15314, #15357)
http://hg.python.org/cpython/rev/3987667bf98f
msg165525 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2012-07-15 12:45
I'm pretty sure I got them all while fixing #15343
History
Date User Action Args
2022-04-11 14:57:32adminsetgithub: 59562
2012-07-15 12:45:43ncoghlansetstatus: open -> closed
resolution: fixed
messages: + msg165525

stage: resolved

2012-07-15 08:10:04python-devsetnosy: + python-dev
messages: + msg165511
2012-07-15 02:27:15ncoghlancreate