Home
last modified time | relevance | path

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

/third_party/python/Objects/
H A Dbytearrayobject.c514 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, in bytearray_setslice() function
530 err = bytearray_setslice(self, lo, hi, values); in bytearray_setslice()
584 return bytearray_setslice(self, i, i+1, NULL); in bytearray_setitem()
1699 /* bytearray_setslice code only accepts something supporting PEP 3118. */ in bytearray_extend()
1701 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), iterable_of_ints) == -1) in bytearray_extend()
1776 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), bytearray_obj) == -1) { in bytearray_extend()

Completed in 4 milliseconds