[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:
Irit Katriel 2020-10-21 17:20:56 +01:00 committed by GitHub
parent c756c2b507
commit f3982d666c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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':