Python Import Engine - Possible GSoC Project

This concept has been put forward as a project for students to consider undertaking as part of SummerOfCode/2011

The Python import process involves a great deal of process global state. At the very least, this includes:

This project involves taking the in-development version of Python 3.3, including the "importlib" package, and attempting to implement an ImportEngine class, which encapsulates all of the mechanisms of Python's import system into a single object.

An ideal outcome is to successfully implement this within the limitations of the existing PEP 302 interface. A more likely outcome is to identify the minimal set of changes or additions to the PEP 302 interfaces needed in order to support this mode of operation (e.g. passing the import engine instance as an optional argument to loader and importer methods), and to fork importlib to support those interface changes.

If the task proves easier than expected, then there are multiple follow-on tasks that can be pursued:

If successful, this project may result in the ImportEngine API being made available in a future version of importlib, or else being used as a basis to propose a new revision of the PEP 302 interfaces. However, neither outcome can be guaranteed.

The full details of Python's import system are not cleanly documented. A good starting point is the Python 3.3 "importlib" documentation (especially the "See also" list), as well as the importlib source code. A more readable introduction may be found in this draft ODT manuscript in the svn.python.org sandbox. While the latter is slightly dated in some areas (it was written for Python 2.5), it still provides a solid overview of the essential operation of Python's import machinery.

If you are interested in this activity as a possible GSoC project (under the auspices of the PSF), contact Nick Coghlan with any technical questions. Refer to SummerOfCode/2011 for details on the GSoC process itself.

PythonImportEngine (last edited 2011-03-05 07:58:42 by 123-243-168-23)

Unable to edit the page? See the FrontPage for instructions.