Skip to content
Merged
Changes from all commits
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
Trim trailing whitespace
  • Loading branch information
brandtbucher committed Dec 17, 2022
commit 0d607b8474610814c2e10202b693bb8f129acc2d
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