Skip to content

Commit 95231de

Browse files
committed
Remove AC-replaced function.
1 parent 2652de2 commit 95231de

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

Modules/_ctypes/_ctypes.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,16 +1478,6 @@ _ctypes_PyCArrayType_Type_raw_set_impl(CDataObject *self, PyObject *value)
14781478
return -1;
14791479
}
14801480

1481-
static PyObject *
1482-
CharArray_get_raw(PyObject *op, void *Py_UNUSED(ignored))
1483-
{
1484-
PyObject *res;
1485-
CDataObject *self = _CDataObject_CAST(op);
1486-
Py_BEGIN_CRITICAL_SECTION(self);
1487-
res = PyBytes_FromStringAndSize(self->b_ptr, self->b_size);
1488-
Py_END_CRITICAL_SECTION();
1489-
return res;
1490-
}
14911481
/*[clinic input]
14921482
@critical_section
14931483
@getter

0 commit comments

Comments
 (0)