mirror of https://github.com/python/cpython
bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340)
This commit is contained in:
parent
d905df766c
commit
fbeba8f248
|
@ -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':
|
||||
|
|
Loading…
Reference in New Issue