bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340)

This commit is contained in:
mpheath 2020-02-14 04:32:09 +10:00 committed by GitHub
parent d905df766c
commit fbeba8f248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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