Skip to content

Commit

Permalink
GH-99554: Trim trailing whitespace (GH-100435)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: GH:brandtbucher
  • Loading branch information
brandtbucher committed Dec 22, 2022
1 parent 4cc63e0 commit 09edde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ location_is_after(location loc1, location loc2) {
static inline bool
same_location(location a, location b)
{
return a.lineno == b.lineno &&
return a.lineno == b.lineno &&
a.end_lineno == b.end_lineno &&
a.col_offset == b.col_offset &&
a.end_col_offset == b.end_col_offset;
Expand Down

0 comments on commit 09edde9

Please sign in to comment.