From: Irit Katriel Date: Wed, 21 Oct 2020 16:20:56 +0000 (+0100) Subject: [3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857) X-Git-Tag: v3.8.7rc1~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3982d666c1df290373a4810edd501b2176b45c7;p=thirdparty%2FPython%2Fcpython.git [3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857) Automerge-Triggered-By: GH:zware --- diff --git a/Lib/ast.py b/Lib/ast.py index d29db80a085f..d197f68a97e1 100644 --- a/Lib/ast.py +++ b/Lib/ast.py @@ -285,7 +285,7 @@ def _splitlines_no_ff(source): def _pad_whitespace(source): - """Replace all chars except '\f\t' in a line with spaces.""" + r"""Replace all chars except '\f\t' in a line with spaces.""" result = '' for c in source: if c in '\f\t':