Skip to content

Commit 7ef5009

Browse files
committed
Resolve merge conflict
1 parent cc17195 commit 7ef5009

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Include/internal/pycore_optimizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ PyAPI_FUNC(_PyExecutorObject*) _Py_GetExecutor(PyCodeObject *code, int offset);
9090

9191
void _Py_ExecutorInit(_PyExecutorObject *, const _PyBloomFilter *);
9292
void _Py_ExecutorDetach(_PyExecutorObject *);
93-
int _Py_ExecutorClear(_PyExecutorObject *);
93+
int _Py_ExecutorClear(PyObject *);
9494
void _Py_BloomFilter_Init(_PyBloomFilter *);
9595
void _Py_BloomFilter_Add(_PyBloomFilter *bloom, void *obj);
9696
PyAPI_FUNC(void) _Py_Executor_DependsOn(_PyExecutorObject *executor, void *obj);

Python/optimizer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ _Py_ExecutorDetach(_PyExecutorObject *executor)
14291429
}
14301430

14311431
int
1432-
_Py_ExecutorClear(_PyExecutorObject *executor)
1432+
_Py_ExecutorClear(PyObject *op)
14331433
{
14341434
_PyExecutorObject *executor = _PyExecutorObject_CAST(op);
14351435
if (!executor->vm_data.valid) {
@@ -1453,7 +1453,7 @@ _Py_ExecutorClear(_PyExecutorObject *executor)
14531453
}
14541454

14551455
static int
1456-
executor_clear(_PyExecutorObject *executor)
1456+
executor_clear(PyObject *executor)
14571457
{
14581458
return _Py_ExecutorClear(executor);
14591459
}

0 commit comments

Comments
 (0)