mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340)
This commit is contained in:
parent
d905df766c
commit
fbeba8f248
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue