From fbeba8f2481411d608a616366394e07cdc52e0bb Mon Sep 17 00:00:00 2001 From: mpheath <58158242+mpheath@users.noreply.github.com> Date: Fri, 14 Feb 2020 04:32:09 +1000 Subject: bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) --- Lib/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ast.py b/Lib/ast.py index 495c0d6..511f095 100644 --- a/Lib/ast.py +++ b/Lib/ast.py @@ -302,7 +302,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': -- cgit v0.12