From 0d607b8474610814c2e10202b693bb8f129acc2d Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Sat, 17 Dec 2022 14:19:52 -0800 Subject: [PATCH] Trim trailing whitespace --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 023c13507d6a77..cbbdfb9e946772 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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;