[3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857)
Automerge-Triggered-By: GH:zware
This commit is contained in:
parent
c756c2b507
commit
f3982d666c
|
@ -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':
|
||||
|
|
Loading…
Reference in New Issue