Skip to content

Commit f012a9f

Browse files
committed
Formatting
1 parent 39ff3f0 commit f012a9f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Include/internal/pycore_frame.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ _PyFrame_CopyToHeap(_PyInterpreterFrame *src, _PyInterpreterFrame *dest)
164164
// "support" for borrowed references in the source frame. Convert any
165165
// borrowed references that were copied into dest into strong references.
166166
for (int i = 0; i < stacktop; i++) {
167-
dest->localsplus[i] = _PyStackRef_NewIfBorrowedOrSteal(src->localsplus[i]);
167+
dest->localsplus[i] =
168+
_PyStackRef_NewIfBorrowedOrSteal(src->localsplus[i]);
168169
}
169170
dest->f_executable = _PyStackRef_NewIfBorrowedOrSteal(dest->f_executable);
170171
dest->f_funcobj = _PyStackRef_NewIfBorrowedOrSteal(dest->f_funcobj);

Python/flowgraph.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2525,7 +2525,8 @@ store_local(uint8_t *instr_flags, ref_stack *refs, int local, ref r)
25252525
}
25262526

25272527
static void
2528-
load_fast_push_block(basicblock ***sp, basicblock *target, Py_ssize_t start_depth)
2528+
load_fast_push_block(basicblock ***sp, basicblock *target,
2529+
Py_ssize_t start_depth)
25292530
{
25302531
assert(target->b_startdepth >= 0 && target->b_startdepth == start_depth);
25312532
if (!target->b_visited) {
@@ -3816,7 +3817,8 @@ _PyCompile_OptimizeLoadFast(PyObject *seq)
38163817
return NULL;
38173818
}
38183819

3819-
cfg_builder *g = _PyCfg_FromInstructionSequence((_PyInstructionSequence*)seq);
3820+
cfg_builder *g =
3821+
_PyCfg_FromInstructionSequence((_PyInstructionSequence *)seq);
38203822
if (g == NULL) {
38213823
return NULL;
38223824
}

0 commit comments

Comments
 (0)