summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-12-22 20:13:51 (GMT)
committerGitHub <noreply@github.com>2022-12-22 20:13:51 (GMT)
commit09edde95f4841d5dffa584b1c963eb7ceab3f16a (patch)
tree01815e1e84b0721c4f6cb5630fe92691eb2fad39
parent4cc63e0d4e4cf3299dcc0ea81616ba072ae5589d (diff)
downloadcpython-09edde95f4841d5dffa584b1c963eb7ceab3f16a.zip
cpython-09edde95f4841d5dffa584b1c963eb7ceab3f16a.tar.gz
cpython-09edde95f4841d5dffa584b1c963eb7ceab3f16a.tar.bz2
GH-99554: Trim trailing whitespace (GH-100435)
Automerge-Triggered-By: GH:brandtbucher
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
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;