]> granicus.if.org Git - python/commitdiff
[bug #692016] update description of {m,n} modifier; you can omit the lower bound
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 4 Mar 2003 14:12:24 +0000 (14:12 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 4 Mar 2003 14:12:24 +0000 (14:12 +0000)
Doc/lib/libre.tex

index 0b0f477c50f2ecd1387884da7ab215626f068b9b..a82a0e49bb6d99ff9583ead8c37003dc9c33aec2 100644 (file)
@@ -129,9 +129,10 @@ not five.
 \item[\code{\{\var{m},\var{n}\}}] Causes the resulting RE to match from
 \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
+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
 the previously described form.