]> granicus.if.org Git - python/commitdiff
fix description of \r; thanks to Thomas Waldmann from docs@
authorSandro Tosi <sandro.tosi@gmail.com>
Fri, 19 Aug 2011 20:54:50 +0000 (22:54 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Fri, 19 Aug 2011 20:54:50 +0000 (22:54 +0200)
Doc/library/re.rst

index 3046755f2964ae1f6487d596a9ad496576e6a485..540a2091bee98b2bb2659712e5c1266c558b3cc2 100644 (file)
@@ -635,7 +635,7 @@ form.
    of *pattern* in *string* by the replacement *repl*.  If the pattern isn't found,
    *string* is returned unchanged.  *repl* can be a string or a function; if it is
    a string, any backslash escapes in it are processed.  That is, ``\n`` is
-   converted to a single newline character, ``\r`` is converted to a linefeed, and
+   converted to a single newline character, ``\r`` is converted to a carriage return, and
    so forth.  Unknown escapes such as ``\j`` are left alone.  Backreferences, such
    as ``\6``, are replaced with the substring matched by group 6 in the pattern.
    For example: