[Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex,1.38,1.39

Fred L. Drake python-dev@python.org
Mon, 18 Sep 2000 09:48:16 -0700


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

Modified Files:
	libstring.tex 
Log Message:

Document the "printable" and "punctuation" constants added to the string
module.


Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** libstring.tex	2000/09/09 05:34:06	1.38
--- libstring.tex	2000/09/18 16:48:13	1.39
***************
*** 38,41 ****
--- 38,52 ----
  \end{datadesc}
  
+ \begin{datadesc}{punctuation}
+   String of \ASCII{} characters which are considered punctuation
+   characters in the \samp{C} locale.
+ \end{datadesc}
+ 
+ \begin{datadesc}{printable}
+   String of characters which are considered printable.  This is a
+   combination of \constant{digits}, \constant{letters},
+   \constant{punctuation}, and \constant{whitespace}.
+ \end{datadesc}
+ 
  \begin{datadesc}{uppercase}
    A string containing all the characters that are considered uppercase