summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_frame.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-04-29 04:51:55 (GMT)
committerGitHub <noreply@github.com>2023-04-29 04:51:55 (GMT)
commit738c226786997262b76557d2dadd2beb89ea3fd1 (patch)
tree60e4c176e7064ac53dc602ac5c31102264631ce4 /Include/internal/pycore_frame.h
parente1f14643dc0e6024f8df9ae975c3b05912a3cb28 (diff)
downloadcpython-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.h6
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)
{