diff options
author | Mark Shannon <mark@hotpy.org> | 2023-04-29 04:51:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 04:51:55 (GMT) |
commit | 738c226786997262b76557d2dadd2beb89ea3fd1 (patch) | |
tree | 60e4c176e7064ac53dc602ac5c31102264631ce4 /Include/internal/pycore_frame.h | |
parent | e1f14643dc0e6024f8df9ae975c3b05912a3cb28 (diff) | |
download | cpython-738c226786997262b76557d2dadd2beb89ea3fd1.zip cpython-738c226786997262b76557d2dadd2beb89ea3fd1.tar.gz cpython-738c226786997262b76557d2dadd2beb89ea3fd1.tar.bz2 |
GH-103082: Code cleanup in instrumentation code (#103474)
Diffstat (limited to 'Include/internal/pycore_frame.h')
-rw-r--r-- | Include/internal/pycore_frame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index 20d48d2..d8d7fe9 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) { |