[Python-checkins] python/dist/src/Doc/lib libre.tex,1.94,1.95

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Tue, 04 Mar 2003 06:12:28 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv17967

Modified Files:
	libre.tex 
Log Message:
[bug #692016] update description of {m,n} modifier; you can omit the lower bound

Index: libre.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libre.tex,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -d -r1.94 -r1.95
*** libre.tex	4 Mar 2003 14:07:51 -0000	1.94
--- libre.tex	4 Mar 2003 14:12:24 -0000	1.95
***************
*** 130,136 ****
  \var{m} to \var{n} repetitions of the preceding RE, attempting to
  match as many repetitions as possible.  For example, \regexp{a\{3,5\}}
! will match from 3 to 5 \character{a} characters.  Omitting \var{n}
! specifies an infinite upper bound; you can't omit \var{m}.  As an
! example, \regexp{a\{4,\}b} will match \code{aaaab}, a thousand
  \character{a} characters followed by a \code{b}, but not \code{aaab}.
  The comma may not be omitted or the modifier would be confused with
--- 130,137 ----
  \var{m} to \var{n} repetitions of the preceding RE, attempting to
  match as many repetitions as possible.  For example, \regexp{a\{3,5\}}
! will match from 3 to 5 \character{a} characters.  Omitting \var{m}
! specifies a lower bound of zero, 
! and omitting \var{n} specifies an infinite upper bound.  As an
! example, \regexp{a\{4,\}b} will match \code{aaaab} or a thousand
  \character{a} characters followed by a \code{b}, but not \code{aaab}.
  The comma may not be omitted or the modifier would be confused with