Home
last modified time | relevance | path

Searched refs:bytearray_setslice (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dbytearrayobject.c528 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, in bytearray_setslice() function
544 err = bytearray_setslice(self, lo, hi, values); in bytearray_setslice()
591 return bytearray_setslice(self, i, i+1, NULL); in bytearray_setitem()
1675 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), iterable_of_ints) == -1) in bytearray_extend()
1750 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), bytearray_obj) == -1) { in bytearray_extend()