From: Guido van Rossum Date: Mon, 15 Nov 1999 14:19:15 +0000 (+0000) Subject: Correct typo in module doc string doscovered by Jonathan Giddy. X-Git-Tag: v1.6a1~740 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77980a731cc5a279e768e55ff9f0ca2ca7647d02;p=thirdparty%2FPython%2Fcpython.git Correct typo in module doc string doscovered by Jonathan Giddy. --- diff --git a/Lib/re.py b/Lib/re.py index 8f6bc5fb6528..602980a3ca90 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -20,7 +20,7 @@ The special characters are: "$" Matches the end of the string. "*" Matches 0 or more (greedy) repetitions of the preceding RE. Greedy means that it will match as many repetitions as possible. - "+" Matches 0 or more (greedy) repetitions of the preceding RE. + "+" Matches 1 or more (greedy) repetitions of the preceding RE. "?" Matches 0 or 1 (greedy) of the preceding RE. *?,+?,?? Non-greedy versions of the previous three special characters. {m,n} Matches from m to n repetitions of the preceding RE.