]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
GH-99554: Trim trailing whitespace (GH-100435)
authorBrandt Bucher <brandtbucher@microsoft.com>
Thu, 22 Dec 2022 20:13:51 +0000 (12:13 -0800)
committerGitHub <noreply@github.com>
Thu, 22 Dec 2022 20:13:51 +0000 (12:13 -0800)
Automerge-Triggered-By: GH:brandtbucher
Python/compile.c

index 023c13507d6a771888ddc3a71d2f704577364256..cbbdfb9e946772c60490ae818f6d8fa5af9bd9f2 100644 (file)
@@ -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;