mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Correct typo in module doc string doscovered by Jonathan Giddy.
This commit is contained in:
parent
2530d4e32b
commit
77980a731c
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue