diff options
| author | Fred Drake <fdrake@acm.org> | 2002-06-22 01:07:37 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2002-06-22 01:07:37 +0000 |
| commit | 53540ab0716de09c26ba7ce9b0f3f371556271ac (patch) | |
| tree | b7bbe7d2a40d3148d935ea66cdc2389437006335 | |
| parent | 0b06be7b0be87bd78707a939cb9964f634f392d4 (diff) | |
| download | cpython-git-53540ab0716de09c26ba7ce9b0f3f371556271ac.tar.gz | |
Correct the RE equivalent of scanf()'s %x and %X patterns.
Closes SF bug #572169.
| -rw-r--r-- | Doc/lib/libre.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 5ab8d84a29..3531e82bba 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -862,7 +862,7 @@ offers some more-or-less equivalent mappings between \lineii{\code{\%u}} {\regexp{\e d+}} \lineii{\code{\%x}, \code{\%X}} - {\regexp{0[xX][\e dA-Fa-f]}} + {\regexp{0[xX][\e dA-Fa-f]+}} \end{tableii} To extract the filename and numbers from a string like |
