[issue16492] Add a load_parents argument to importlib.find_loader()

2013-12-19 Thread Eric Snow

Eric Snow added the comment:

find_loader() is now deprecated and we're going to support auto-importing 
parent modules in find_spec() (see #19944)

--
nosy: +eric.snow
resolution:  - duplicate
stage: test needed - committed/rejected
status: open - closed
superseder:  - Make importlib.find_spec load packages as needed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16492
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16492] Add a load_parents argument to importlib.find_loader()

2012-12-03 Thread Andrew Svetlov

Changes by Andrew Svetlov andrew.svet...@gmail.com:


--
nosy: +asvetlov

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16492
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16492] Add a load_parents argument to importlib.find_loader()

2012-11-17 Thread Brett Cannon

New submission from Brett Cannon:

To make using importlib.find_loader() easier, there should be a flag that says 
to automatically import all parent packages for the desired submodule so as to 
not force the user to do it::

  def find_loader(name, path=None, *, load_parents=False): ...

That way people who are okay with loading some packages implicitly to get at a 
specific loader can do so without having to do boilerplate name.split('.'); 
import each parent code. Also means people don't have to worry about the path 
argument (unless they explicitly want to trigger loading from a different 
location).

--
components: Library (Lib)
messages: 175742
nosy: brett.cannon
priority: low
severity: normal
stage: test needed
status: open
title: Add a load_parents argument to importlib.find_loader()
type: enhancement
versions: Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16492
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com