From 22b8c992ea2075d2507bd5c267411a276de1bc29 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Tue, 5 Jan 2021 11:00:14 +0000 Subject: [PATCH] Restore comment indentation. --- Python/ceval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/ceval.c b/Python/ceval.c index e821f428e05..58ccf13521b 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4995,8 +4995,8 @@ maybe_call_line_trace(Py_tracefunc func, PyObject *obj, int result = 0; /* If the last instruction falls at the start of a line or if it - represents a jump backwards, update the frame's line number and - then call the trace function if we're tracing source lines. + represents a jump backwards, update the frame's line number and + then call the trace function if we're tracing source lines. */ int lastline = bounds->ar_line; int line = _PyCode_CheckLineNumber(frame->f_lasti, bounds);