]> granicus.if.org Git - python/commit
Importlib's documentation said that importlib.abc.PyLoader inherited from
authorBrett Cannon <bcannon@gmail.com>
Mon, 20 Jul 2009 03:19:18 +0000 (03:19 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 20 Jul 2009 03:19:18 +0000 (03:19 +0000)
commit64ef00fa605463e1da84e43ea8a5d722843174b6
tree219e0049b500df1051e208ff1ec6c8a19a1d08d4
parent4dc3193973101ce278aee58a9ee36cec2451caf4
Importlib's documentation said that importlib.abc.PyLoader inherited from
importlib.abc.ResourceLoader, when in fact it did not. Fixed the ABC to inherit
as documented.

This doesn't introduce an backwards-incompatiblity as the code in PyLoader
already required the single method ResourceLoader defined as an abstract
method.
Lib/importlib/abc.py
Lib/importlib/test/test_abc.py
Misc/NEWS