[Python-checkins] GH-99554: Trim trailing whitespace (GH-100435)

miss-islington webhook-mailer at python.org
Thu Dec 22 15:13:57 EST 2022


https://github.com/python/cpython/commit/09edde95f4841d5dffa584b1c963eb7ceab3f16a
commit: 09edde95f4841d5dffa584b1c963eb7ceab3f16a
branch: main
author: Brandt Bucher <brandtbucher at microsoft.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-12-22T12:13:51-08:00
summary:

GH-99554: Trim trailing whitespace (GH-100435)



Automerge-Triggered-By: GH:brandtbucher

files:
M Python/compile.c

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;



More information about the Python-checkins mailing list