From f3982d666c1df290373a4810edd501b2176b45c7 Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Wed, 21 Oct 2020 17:20:56 +0100 Subject: [PATCH] [3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857) Automerge-Triggered-By: GH:zware --- Lib/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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': -- 2.47.3