source: vendor/python/2.5/Doc/lib/libni.tex

Last change on this file was 3225, checked in by bird, 18 years ago

Python 2.5

File size: 2.4 KB
Line 
1\section{\module{ni} ---
2 None}
3\declaremodule{standard}{ni}
4
5\modulesynopsis{None}
6
7
8\strong{Warning: This module is obsolete.} As of Python 1.5a4,
9package support (with different semantics for \code{__init__} and no
10support for \code{__domain__} or \code{__}) is built in the
11interpreter. The ni module is retained only for backward
12compatibility. As of Python 1.5b2, it has been renamed to \code{ni1};
13if you really need it, you can use \code{import ni1}, but the
14recommended approach is to rely on the built-in package support,
15converting existing packages if needed. Note that mixing \code{ni}
16and the built-in package support doesn't work: once you import
17\code{ni}, all packages use it.
18
19The \code{ni} module defines a new importing scheme, which supports
20packages containing several Python modules. To enable package
21support, execute \code{import ni} before importing any packages. Importing
22this module automatically installs the relevant import hooks. There
23are no publicly-usable functions or variables in the \code{ni} module.
24
25To create a package named \code{spam} containing sub-modules \code{ham}, \code{bacon} and
26\code{eggs}, create a directory \file{spam} somewhere on Python's module search
27path, as given in \code{sys.path}. Then, create files called \file{ham.py}, \file{bacon.py} and
28\file{eggs.py} inside \file{spam}.
29
30To import module \code{ham} from package \code{spam} and use function
31\code{hamneggs()} from that module, you can use any of the following
32possibilities:
33
34\begin{verbatim}
35import spam.ham # *not* "import spam" !!!
36spam.ham.hamneggs()
37\end{verbatim}
38%
39\begin{verbatim}
40from spam import ham
41ham.hamneggs()
42\end{verbatim}
43%
44\begin{verbatim}
45from spam.ham import hamneggs
46hamneggs()
47\end{verbatim}
48%
49\code{import spam} creates an
50empty package named \code{spam} if one does not already exist, but it does
51\emph{not} automatically import \code{spam}'s submodules.
52The only submodule that is guaranteed to be imported is
53\code{spam.__init__}, if it exists; it would be in a file named
54\file{__init__.py} in the \file{spam} directory. Note that
55\code{spam.__init__} is a submodule of package spam. It can refer to
56spam's namespace as \code{__} (two underscores):
57
58\begin{verbatim}
59__.spam_inited = 1 # Set a package-level variable
60\end{verbatim}
61%
62Additional initialization code (setting up variables, importing other
63submodules) can be performed in \file{spam/__init__.py}.
Note: See TracBrowser for help on using the repository browser.