Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fbeba8f

Browse files
authored
bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340)
1 parent d905df7 commit fbeba8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def _splitlines_no_ff(source):
302302

303303

304304
def _pad_whitespace(source):
305-
"""Replace all chars except '\f\t' in a line with spaces."""
305+
r"""Replace all chars except '\f\t' in a line with spaces."""
306306
result = ''
307307
for c in source:
308308
if c in '\f\t':

0 commit comments

Comments
 (0)