Tweak the source/bytecode loader from importlib to use more of the PEP 302
protocol API.
diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES
index 1bbcb96..35c8fd3 100644
--- a/Lib/importlib/NOTES
+++ b/Lib/importlib/NOTES
@@ -7,6 +7,7 @@
+ PyLoader (for ABC)
+ - load_module for source only
- get_code for source only
+ PyFileLoader(PyLoader)
@@ -17,6 +18,7 @@
+PyPycLoader (PyLoader, for ABC)
+ - load_module for source and bytecode
- get_code for source and bytecode
+ PyPycFileLoader(PyPycLoader, PyFileLoader)