From: Brandt Bucher Date: Thu, 22 Dec 2022 20:13:51 +0000 (-0800) Subject: GH-99554: Trim trailing whitespace (GH-100435) X-Git-Tag: v3.12.0a4~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09edde95f4841d5dffa584b1c963eb7ceab3f16a;p=thirdparty%2FPython%2Fcpython.git GH-99554: Trim trailing whitespace (GH-100435) Automerge-Triggered-By: GH:brandtbucher --- diff --git a/Python/compile.c b/Python/compile.c index 023c13507d6a..cbbdfb9e9467 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;