Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{imp} --- |
Fred Drake | 4a406c6 | 1999-04-22 20:52:44 +0000 | [diff] [blame] | 2 | Access the \keyword{import} internals} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | |
Fred Drake | 4a406c6 | 1999-04-22 20:52:44 +0000 | [diff] [blame] | 4 | \declaremodule{builtin}{imp} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 5 | \modulesynopsis{Access the implementation of the \keyword{import} statement.} |
| 6 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 7 | |
Fred Drake | 28b1770 | 1999-06-10 22:08:16 +0000 | [diff] [blame] | 8 | This\stindex{import} module provides an interface to the mechanisms |
Fred Drake | 4a406c6 | 1999-04-22 20:52:44 +0000 | [diff] [blame] | 9 | used to implement the \keyword{import} statement. It defines the |
| 10 | following constants and functions: |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 12 | |
| 13 | \begin{funcdesc}{get_magic}{} |
Fred Drake | 64c105d | 1998-08-11 15:18:45 +0000 | [diff] [blame] | 14 | \indexii{file}{byte-code} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 15 | Return the magic string value used to recognize byte-compiled code |
Fred Drake | 64c105d | 1998-08-11 15:18:45 +0000 | [diff] [blame] | 16 | files (\file{.pyc} files). (This value may be different for each |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 17 | Python version.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 18 | \end{funcdesc} |
| 19 | |
| 20 | \begin{funcdesc}{get_suffixes}{} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 21 | Return a list of triples, each describing a particular type of module. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 22 | Each triple has the form \code{(\var{suffix}, \var{mode}, |
| 23 | \var{type})}, where \var{suffix} is a string to be appended to the |
| 24 | module name to form the filename to search for, \var{mode} is the mode |
Fred Drake | 64c105d | 1998-08-11 15:18:45 +0000 | [diff] [blame] | 25 | string to pass to the built-in \function{open()} function to open the |
| 26 | file (this can be \code{'r'} for text files or \code{'rb'} for binary |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 27 | files), and \var{type} is the file type, which has one of the values |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 28 | \constant{PY_SOURCE}, \constant{PY_COMPILED}, or |
| 29 | \constant{C_EXTENSION}, described below. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 30 | \end{funcdesc} |
| 31 | |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 32 | \begin{funcdesc}{find_module}{name\optional{, path}} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 33 | Try to find the module \var{name} on the search path \var{path}. If |
| 34 | \var{path} is a list of directory names, each directory is searched |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 35 | for files with any of the suffixes returned by \function{get_suffixes()} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 36 | above. Invalid names in the list are silently ignored (but all list |
| 37 | items must be strings). If \var{path} is omitted or \code{None}, the |
| 38 | list of directory names given by \code{sys.path} is searched, but |
| 39 | first it searches a few special places: it tries to find a built-in |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 40 | module with the given name (\constant{C_BUILTIN}), then a frozen module |
| 41 | (\constant{PY_FROZEN}), and on some systems some other places are looked |
| 42 | in as well (on the Mac, it looks for a resource (\constant{PY_RESOURCE}); |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 43 | on Windows, it looks in the registry which may point to a specific |
| 44 | file). |
| 45 | |
| 46 | If search is successful, the return value is a triple |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 47 | \code{(\var{file}, \var{pathname}, \var{description})} where |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 48 | \var{file} is an open file object positioned at the beginning, |
| 49 | \var{pathname} is the pathname of the |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 50 | file found, and \var{description} is a triple as contained in the list |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 51 | returned by \function{get_suffixes()} describing the kind of module found. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 52 | If the module does not live in a file, the returned \var{file} is |
| 53 | \code{None}, \var{filename} is the empty string, and the |
| 54 | \var{description} tuple contains empty strings for its suffix and |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 55 | mode; the module type is as indicate in parentheses above. If the |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 56 | search is unsuccessful, \exception{ImportError} is raised. Other |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 57 | exceptions indicate problems with the arguments or environment. |
| 58 | |
| 59 | This function does not handle hierarchical module names (names |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 60 | containing dots). In order to find \var{P}.\var{M}, that is, submodule |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 61 | \var{M} of package \var{P}, use \function{find_module()} and |
| 62 | \function{load_module()} to find and load package \var{P}, and then use |
| 63 | \function{find_module()} with the \var{path} argument set to |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 64 | \code{\var{P}.__path__}. When \var{P} itself has a dotted name, apply |
| 65 | this recipe recursively. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 66 | \end{funcdesc} |
| 67 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 68 | \begin{funcdesc}{load_module}{name, file, filename, description} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 69 | Load a module that was previously found by \function{find_module()} (or by |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 70 | an otherwise conducted search yielding compatible results). This |
| 71 | function does more than importing the module: if the module was |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame^] | 72 | already imported, it will reload the module! The \var{name} argument |
Fred Drake | 2c4f554 | 2000-10-10 22:00:03 +0000 | [diff] [blame] | 73 | indicates the full module name (including the package name, if this is |
| 74 | a submodule of a package). The \var{file} argument is an open file, |
| 75 | and \var{filename} is the corresponding file name; these can be |
| 76 | \code{None} and \code{''}, respectively, when the module is not being |
| 77 | loaded from a file. The \var{description} argument is a tuple, as |
| 78 | would be returned by \function{get_suffixes()}, describing what kind |
| 79 | of module must be loaded. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 80 | |
| 81 | If the load is successful, the return value is the module object; |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 82 | otherwise, an exception (usually \exception{ImportError}) is raised. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 83 | |
| 84 | \strong{Important:} the caller is responsible for closing the |
| 85 | \var{file} argument, if it was not \code{None}, even when an exception |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 86 | is raised. This is best done using a \keyword{try} |
| 87 | ... \keyword{finally} statement. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 88 | \end{funcdesc} |
| 89 | |
| 90 | \begin{funcdesc}{new_module}{name} |
| 91 | Return a new empty module object called \var{name}. This object is |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 92 | \emph{not} inserted in \code{sys.modules}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 93 | \end{funcdesc} |
| 94 | |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 95 | \begin{funcdesc}{lock_held}{} |
Neal Norwitz | 6b35370 | 2002-04-09 18:15:00 +0000 | [diff] [blame] | 96 | Return \code{True} if the import lock is currently held, else \code{False}. |
| 97 | On platforms without threads, always return \code{False}. |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 98 | |
| 99 | On platforms with threads, a thread executing an import holds an internal |
| 100 | lock until the import is complete. |
| 101 | This lock blocks other threads from doing an import until the original |
| 102 | import completes, which in turn prevents other threads from seeing |
| 103 | incomplete module objects constructed by the original thread while in |
| 104 | the process of completing its import (and the imports, if any, |
| 105 | triggered by that). |
| 106 | \end{funcdesc} |
| 107 | |
Neal Norwitz | 2294c0d | 2003-02-12 23:02:21 +0000 | [diff] [blame] | 108 | \begin{funcdesc}{acquire_lock}{} |
| 109 | Acquires the interpreter's import lock for the current thread. This lock |
| 110 | should be used by import hooks to ensure thread-safety when importing modules. |
| 111 | On platforms without threads, this function does nothing. |
| 112 | \versionadded{2.3} |
| 113 | \end{funcdesc} |
| 114 | |
| 115 | \begin{funcdesc}{release_lock}{} |
| 116 | Release the interpreter's import lock. |
| 117 | On platforms without threads, this function does nothing. |
| 118 | \versionadded{2.3} |
| 119 | \end{funcdesc} |
| 120 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 121 | The following constants with integer values, defined in this module, |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 122 | are used to indicate the search result of \function{find_module()}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 123 | |
| 124 | \begin{datadesc}{PY_SOURCE} |
| 125 | The module was found as a source file. |
| 126 | \end{datadesc} |
| 127 | |
| 128 | \begin{datadesc}{PY_COMPILED} |
| 129 | The module was found as a compiled code object file. |
| 130 | \end{datadesc} |
| 131 | |
| 132 | \begin{datadesc}{C_EXTENSION} |
| 133 | The module was found as dynamically loadable shared library. |
| 134 | \end{datadesc} |
| 135 | |
| 136 | \begin{datadesc}{PY_RESOURCE} |
Brett Cannon | 7706c2d | 2005-02-13 22:50:04 +0000 | [diff] [blame] | 137 | The module was found as a Mac OS 9 resource. This value can only be |
| 138 | returned on a Mac OS 9 or earlier Macintosh. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 139 | \end{datadesc} |
| 140 | |
| 141 | \begin{datadesc}{PKG_DIRECTORY} |
| 142 | The module was found as a package directory. |
| 143 | \end{datadesc} |
| 144 | |
| 145 | \begin{datadesc}{C_BUILTIN} |
| 146 | The module was found as a built-in module. |
| 147 | \end{datadesc} |
| 148 | |
| 149 | \begin{datadesc}{PY_FROZEN} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 150 | The module was found as a frozen module (see \function{init_frozen()}). |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 151 | \end{datadesc} |
| 152 | |
| 153 | The following constant and functions are obsolete; their functionality |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 154 | is available through \function{find_module()} or \function{load_module()}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 155 | They are kept around for backward compatibility: |
| 156 | |
| 157 | \begin{datadesc}{SEARCH_ERROR} |
| 158 | Unused. |
| 159 | \end{datadesc} |
| 160 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 161 | \begin{funcdesc}{init_builtin}{name} |
| 162 | Initialize the built-in module called \var{name} and return its module |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 163 | object along with storing it in \code{sys.modules}. If the module was already |
| 164 | initialized, it will be initialized \emph{again}. Re-initialization involves |
| 165 | the copying of the built-in module's \code{__dict__} from the cached |
| 166 | module over the module's entry in \code{sys.modules}. If there is no |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 167 | built-in module called \var{name}, \code{None} is returned. |
| 168 | \end{funcdesc} |
| 169 | |
| 170 | \begin{funcdesc}{init_frozen}{name} |
| 171 | Initialize the frozen module called \var{name} and return its module |
| 172 | object. If the module was already initialized, it will be initialized |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 173 | \emph{again}. If there is no frozen module called \var{name}, |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 174 | \code{None} is returned. (Frozen modules are modules written in |
| 175 | Python whose compiled byte-code object is incorporated into a |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 176 | custom-built Python interpreter by Python's \program{freeze} utility. |
| 177 | See \file{Tools/freeze/} for now.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 178 | \end{funcdesc} |
| 179 | |
| 180 | \begin{funcdesc}{is_builtin}{name} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 181 | Return \code{1} if there is a built-in module called \var{name} which |
| 182 | can be initialized again. Return \code{-1} if there is a built-in |
| 183 | module called \var{name} which cannot be initialized again (see |
| 184 | \function{init_builtin()}). Return \code{0} if there is no built-in |
| 185 | module called \var{name}. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 186 | \end{funcdesc} |
| 187 | |
| 188 | \begin{funcdesc}{is_frozen}{name} |
Neal Norwitz | 6b35370 | 2002-04-09 18:15:00 +0000 | [diff] [blame] | 189 | Return \code{True} if there is a frozen module (see |
| 190 | \function{init_frozen()}) called \var{name}, or \code{False} if there is |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 191 | no such module. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 192 | \end{funcdesc} |
| 193 | |
Johannes Gijsbers | 8e3bec5 | 2004-08-20 14:38:56 +0000 | [diff] [blame] | 194 | \begin{funcdesc}{load_compiled}{name, pathname, \optional{file}} |
Fred Drake | 64c105d | 1998-08-11 15:18:45 +0000 | [diff] [blame] | 195 | \indexii{file}{byte-code} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 196 | Load and initialize a module implemented as a byte-compiled code file |
| 197 | and return its module object. If the module was already initialized, |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 198 | it will be initialized \emph{again}. The \var{name} argument is used |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 199 | to create or access a module object. The \var{pathname} argument |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 200 | points to the byte-compiled code file. The \var{file} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 201 | argument is the byte-compiled code file, open for reading in binary |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 202 | mode, from the beginning. |
| 203 | It must currently be a real file object, not a |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 204 | user-defined class emulating a file. |
| 205 | \end{funcdesc} |
| 206 | |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 207 | \begin{funcdesc}{load_dynamic}{name, pathname\optional{, file}} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 208 | Load and initialize a module implemented as a dynamically loadable |
| 209 | shared library and return its module object. If the module was |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 210 | already initialized, it will be initialized \emph{again}. |
| 211 | Re-initialization involves copying the \code{__dict__} attribute of the cached |
| 212 | instance of the module over the value used in the module cached in |
| 213 | \code{sys.modules}. The \var{pathname} argument must point to the shared |
| 214 | library. The \var{name} argument is used to construct the name of the |
| 215 | initialization function: an external C function called |
| 216 | \samp{init\var{name}()} in the shared library is called. The optional |
| 217 | \var{file} argument is ignored. (Note: using shared libraries is highly |
| 218 | system dependent, and not all systems support it.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 219 | \end{funcdesc} |
| 220 | |
Johannes Gijsbers | 8e3bec5 | 2004-08-20 14:38:56 +0000 | [diff] [blame] | 221 | \begin{funcdesc}{load_source}{name, pathname\optional{, file}} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 222 | Load and initialize a module implemented as a Python source file and |
| 223 | return its module object. If the module was already initialized, it |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 224 | will be initialized \emph{again}. The \var{name} argument is used to |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 225 | create or access a module object. The \var{pathname} argument points |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 226 | to the source file. The \var{file} argument is the source |
| 227 | file, open for reading as text, from the beginning. |
| 228 | It must currently be a real file |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 229 | object, not a user-defined class emulating a file. Note that if a |
Fred Drake | 64c105d | 1998-08-11 15:18:45 +0000 | [diff] [blame] | 230 | properly matching byte-compiled file (with suffix \file{.pyc} or |
| 231 | \file{.pyo}) exists, it will be used instead of parsing the given |
| 232 | source file. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 233 | \end{funcdesc} |
| 234 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 235 | \begin{classdesc}{NullImporter}{path_string} |
| 236 | The \class{NullImporter} type is a \pep{302} import hook that handles |
| 237 | non-directory path strings by failing to find any modules. Calling this |
| 238 | type with an existing directory or empty string raises |
| 239 | \exception{ImportError}. Otherwise, a \class{NullImporter} instance is |
| 240 | returned. |
| 241 | |
| 242 | Python adds instances of this type to \code{sys.path_importer_cache} for |
| 243 | any path entries that are not directories and are not handled by any other |
| 244 | path hooks on \code{sys.path_hooks}. Instances have only one method: |
| 245 | |
| 246 | \begin{methoddesc}{find_module}{fullname \optional{, path}} |
| 247 | This method always returns \code{None}, indicating that the requested |
| 248 | module could not be found. |
| 249 | \end{methoddesc} |
| 250 | |
| 251 | \versionadded{2.5} |
| 252 | \end{classdesc} |
Fred Drake | c83db33 | 1998-02-19 20:50:52 +0000 | [diff] [blame] | 253 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 254 | \subsection{Examples} |
Fred Drake | c83db33 | 1998-02-19 20:50:52 +0000 | [diff] [blame] | 255 | \label{examples-imp} |
| 256 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 257 | The following function emulates what was the standard import statement |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 258 | up to Python 1.4 (no hierarchical module names). (This |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 259 | \emph{implementation} wouldn't work in that version, since |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 260 | \function{find_module()} has been extended and |
| 261 | \function{load_module()} has been added in 1.4.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 262 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 263 | \begin{verbatim} |
Fred Drake | 90badd1 | 2001-01-17 05:12:13 +0000 | [diff] [blame] | 264 | import imp |
| 265 | import sys |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 266 | |
Guido van Rossum | 4f4c9b4 | 1995-02-15 15:52:13 +0000 | [diff] [blame] | 267 | def __import__(name, globals=None, locals=None, fromlist=None): |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 268 | # Fast path: see if the module has already been imported. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 269 | try: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 270 | return sys.modules[name] |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 271 | except KeyError: |
| 272 | pass |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 273 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 274 | # If any of the following calls raises an exception, |
Guido van Rossum | 96628a9 | 1995-04-10 11:34:00 +0000 | [diff] [blame] | 275 | # there's a problem we can't handle -- let the caller handle it. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 276 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 277 | fp, pathname, description = imp.find_module(name) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 278 | |
Guido van Rossum | d6ac380 | 1995-07-07 23:01:27 +0000 | [diff] [blame] | 279 | try: |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 280 | return imp.load_module(name, fp, pathname, description) |
Guido van Rossum | d6ac380 | 1995-07-07 23:01:27 +0000 | [diff] [blame] | 281 | finally: |
| 282 | # Since we may exit via an exception, close fp explicitly. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 283 | if fp: |
| 284 | fp.close() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 285 | \end{verbatim} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 286 | |
| 287 | A more complete example that implements hierarchical module names and |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame^] | 288 | includes a \function{reload()} function can be |
Fred Drake | bc82ab1 | 2002-04-08 05:22:30 +0000 | [diff] [blame] | 289 | found in the module \module{knee}\refmodindex{knee}. The |
| 290 | \module{knee} module can be found in \file{Demo/imputil/} in the |
| 291 | Python source distribution. |