From 738c226786997262b76557d2dadd2beb89ea3fd1 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Sat, 29 Apr 2023 05:51:55 +0100 Subject: GH-103082: Code cleanup in instrumentation code (#103474) --- Include/internal/pycore_frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Include') diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index 20d48d2036..d8d7fe9ef2 100644 --- a/Include/internal/pycore_frame.h +++ b/Include/internal/pycore_frame.h @@ -145,9 +145,9 @@ _PyFrame_GetLocalsArray(_PyInterpreterFrame *frame) } /* Fetches the stack pointer, and sets stacktop to -1. - Having stacktop <= 0 ensures that invalid - values are not visible to the cycle GC. - We choose -1 rather than 0 to assist debugging. */ + Having stacktop <= 0 ensures that invalid + values are not visible to the cycle GC. + We choose -1 rather than 0 to assist debugging. */ static inline PyObject** _PyFrame_GetStackPointer(_PyInterpreterFrame *frame) { -- cgit v1.2.1