summaryrefslogtreecommitdiffstats
path: root/Doc/api
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-10-13 18:18:33 (GMT)
committerFred Drake <fdrake@acm.org>1997-10-13 18:18:33 (GMT)
commit36fbe76a45bf8c5125c7e1a64b79ad0903a3755f (patch)
tree0b0d17c8e349bf6be465eb3817fbc128f8f75e36 /Doc/api
parent3b31cd2fe752bea547a53da870e7978dc36266d2 (diff)
downloadcpython-36fbe76a45bf8c5125c7e1a64b79ad0903a3755f.zip
cpython-36fbe76a45bf8c5125c7e1a64b79ad0903a3755f.tar.gz
cpython-36fbe76a45bf8c5125c7e1a64b79ad0903a3755f.tar.bz2
struct _frozen:
Use spaces instead of tabs to indent structure definition; tabs don't work in tex/latex. PyImport_FrozenModules: struct _freeze ==> struct _frozen
Diffstat (limited to 'Doc/api')
-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.