Skip to content

Commit f3982d6

Browse files
authored
[3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857)
Automerge-Triggered-By: GH:zware
1 parent c756c2b commit f3982d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/ast.py

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

286286

287287
def _pad_whitespace(source):
288-
"""Replace all chars except '\f\t' in a line with spaces."""
288+
r"""Replace all chars except '\f\t' in a line with spaces."""
289289
result = ''
290290
for c in source:
291291
if c in '\f\t':

0 commit comments

Comments
 (0)