[Python-checkins] r57107 - sandbox/trunk/import_in_py/_importlib.py

brett.cannon python-checkins at python.org
Fri Aug 17 00:51:17 CEST 2007


Author: brett.cannon
Date: Fri Aug 17 00:49:33 2007
New Revision: 57107

Modified:
   sandbox/trunk/import_in_py/_importlib.py
Log:
Mark classes that are deprecated (and will eventually be removed).


Modified: sandbox/trunk/import_in_py/_importlib.py
==============================================================================
--- sandbox/trunk/import_in_py/_importlib.py	(original)
+++ sandbox/trunk/import_in_py/_importlib.py	Fri Aug 17 00:49:33 2007
@@ -200,6 +200,7 @@
     return chained_fs_path_hook
 
 
+# XXX Deprecated.
 class FileSystemFactory(object):
 
     """Factory function for sys.path_hooks for directory entries on sys.path.
@@ -323,6 +324,7 @@
 
 
 
+# XXX Deprecated.
 class FileSystemImporter(object):
 
     """Importer for the filesystem using the passed-in handlers."""
@@ -380,6 +382,7 @@
             return None
 
 
+# XXX Deprecated.
 class FileSystemLoader(object):
 
     """Loader for the filesystem.
@@ -478,6 +481,7 @@
                 raise
 
 
+# XXX Deprecated.
 class PyPycHandler(object):
     
     """Handle reading Python bytecode/source with writing out of bytecode as
@@ -649,6 +653,7 @@
         return module
 
 
+# XXX Deprecated.
 class ExtensionFileHandler(object):
     
     """A handler for loading extension modules."""


More information about the Python-checkins mailing list