[Python-checkins] CVS: python/dist/src/Doc/lib libgc.tex,1.2,1.3

Fred L. Drake python-dev@python.org
Fri, 8 Sep 2000 20:26:54 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv15122/lib

Modified Files:
	libgc.tex 
Log Message:

Add \modulesynopsis for inclusion in the list of modules at the beginning
of the chapter.

Add explanation that this is only available when the cycle detector is
enabled at build time.


Index: libgc.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgc.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** libgc.tex	2000/08/06 22:45:31	1.2
--- libgc.tex	2000/09/09 03:26:51	1.3
***************
*** 3,8 ****
--- 3,14 ----
  
  \declaremodule{extension}{gc}
+ \modulesynopsis{Interface to the cycle-detecting garbage collector.}
  \moduleauthor{Neil Schemenauer}{nascheme@enme.ucalgary.ca}
  \sectionauthor{Neil Schemenauer}{nascheme@enme.ucalgary.ca}
+ 
+ The \module{gc} module is only available if the interpreter was built
+ with the optional cyclic garbage detector (enabled by default).  If
+ this was not enabled, an \exception{ImportError} is raised by attempts
+ to import this module.
  
  This module provides an interface to the optional garbage collector.  It