summaryrefslogtreecommitdiffstats
path: root/Doc/api/api.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/api/api.tex')
-rw-r--r--Doc/api/api.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex
index 2b4bbad..494eb41 100644
--- a/Doc/api/api.tex
+++ b/Doc/api/api.tex
@@ -1060,16 +1060,16 @@ as generated by the \code{freeze} utility (see \file{Tools/freeze/} in
the Python source distribution). Its definition is:
\begin{verbatim}
struct _frozen {
- char *name;
- unsigned char *code;
- int size;
+ char *name;
+ unsigned char *code;
+ int size;
};
\end{verbatim}
\end{ctypedesc}
\begin{cvardesc}{struct _frozen *}{PyImport_FrozenModules}
This pointer is initialized to point to an array of \code{struct
-_freeze} records, terminated by one whose members are all \code{NULL}
+_frozen} records, terminated by one whose members are all \code{NULL}
or zero. When a frozen module is imported, it is searched in this
table. Third party code could play tricks with this to provide a
dynamically created collection of frozen modules.