Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clarify comment
  • Loading branch information
mhsmith committed Apr 24, 2024
commit bbe816ff1507edf9a1a0325f7fec3b7544574477
2 changes: 1 addition & 1 deletion Lib/_android_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def write(self, s):
for line, line_keepends in zip(
s.splitlines(), s.splitlines(keepends=True)
):
# Simplify the later stages by translating all newlines into "\n".
# Normalize all newlines to "\n".
if line != line_keepends:
line += "\n"
while line:
Expand Down