From 09edde95f4841d5dffa584b1c963eb7ceab3f16a Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Thu, 22 Dec 2022 12:13:51 -0800 Subject: GH-99554: Trim trailing whitespace (GH-100435) Automerge-Triggered-By: GH:brandtbucher --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 023c135..cbbdfb9 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; -- cgit v0.12