Index: Makefile.deps =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/Makefile.deps,v retrieving revision 1.110 diff -c -r1.110 Makefile.deps *** Makefile.deps 14 Jul 2003 12:12:56 -0000 1.110 --- Makefile.deps 14 Aug 2003 04:00:21 -0000 *************** *** 80,86 **** ref/ref5.tex \ ref/ref6.tex \ ref/ref7.tex \ ! ref/ref8.tex # LaTeX source files for the Python Library Reference LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ --- 80,87 ---- ref/ref5.tex \ ref/ref6.tex \ ref/ref7.tex \ ! ref/ref8.tex \ ! ref/glossary.tex # LaTeX source files for the Python Library Reference LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ Index: ref/ref.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref.tex,v retrieving revision 1.38 diff -c -r1.38 ref.tex *** ref/ref.tex 28 May 2003 12:12:55 -0000 1.38 --- ref/ref.tex 14 Aug 2003 04:00:21 -0000 *************** *** 63,68 **** --- 63,70 ---- \chapter{History and License} \input{license} + \input{glossary} + \input{ref.ind} \end{document} Index: ref/glossary.tex =================================================================== RCS file: ref/glossary.tex diff -N ref/glossary.tex *** /dev/null 1 Jan 1970 00:00:00 -0000 --- ref/glossary.tex 14 Aug 2003 04:00:21 -0000 *************** *** 0 **** --- 1,14 ---- + \chapter{Glossary\label{glossary}} + + %%% keep the entries sorted and include at least one \index{} item for each + + \begin{description} + + \index{iterable} + \item[iterable] Any object which supports enumeration of a set of values by + calling its \method{next} method and which contains an \method{__iter__} + method which returns the object itself. Examples include \class{file}, + \class{list} and \class{dict} objects. In the case of \class{dict} objects, + iteration is over the keys in the object. + + \end{description}