Metadata-Version: 1.0
Name: importlib-no-failure
Version: 1.0.2
Summary: Backport of importlib.import_module() from Python 2.7
Home-page: http://svn.python.org/view/sandbox/trunk/importlib/
Author: Andy McKay, Brett Cannon
Author-email: amckay@mozilla.com
License: UNKNOWN
Description: Purpose
        ========
        
        This package is a copy of importlib on pypi with one small change. If the
        version of Python already has an importlib (2.7 and greater), it does not fail.
        It will install the same way on Python 2.6 and Python 2.7, but in the latter it
        will print out a warning.
        
        This package contains the code from importlib as found in Python 2.7. It is
        provided so that people who wish to use importlib.import_module() with a
        version of Python prior to 2.7 or in 3.0 have the function readily available.
        The code in no way deviates from what can be found in the 2.7 trunk.
        
        For documentation, see the `importlib docs`_ for Python 2.7.
        
        .. _importlib docs: http://docs.python.org/dev/library/importlib.html
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.3
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Python Software Foundation License
