바이트 배열 객체¶
-
PyTypeObject PyByteArray_Type¶
- Part of the Stable ABI.
이
PyTypeObject
인스턴스는 파이썬 bytearray 형을 나타냅니다; 파이썬 계층의bytearray
와 같은 객체입니다.
형 검사 매크로¶
직접 API 함수¶
-
PyObject *PyByteArray_FromObject(PyObject *o)¶
- Return value: New reference. Part of the Stable ABI.
버퍼 프로토콜을 구현하는 임의의 객체(o)로부터 써서 새로운 bytearray 객체를 돌려줍니다.
-
PyObject *PyByteArray_FromStringAndSize(const char *string, Py_ssize_t len)¶
- Return value: New reference. Part of the Stable ABI.
string과 그 길이(len)로부터 새로운 bytearray 객체를 만듭니다. 실패하면,
NULL
이 반환됩니다.
-
PyObject *PyByteArray_Concat(PyObject *a, PyObject *b)¶
- Return value: New reference. Part of the Stable ABI.
바이트 배열 a 와 b를 이어붙여 새로운 bytearray로 반환합니다.
-
Py_ssize_t PyByteArray_Size(PyObject *bytearray)¶
- Part of the Stable ABI.
NULL
포인터를 확인한 후 bytearray의 크기를 반환합니다.
-
char *PyByteArray_AsString(PyObject *bytearray)¶
- Part of the Stable ABI.
NULL
포인터를 확인한 후 bytearray의 내용을 char 배열로 반환합니다. 반환되는 배열에는 항상 여분의 널 바이트가 추가됩니다.
-
int PyByteArray_Resize(PyObject *bytearray, Py_ssize_t len)¶
- Part of the Stable ABI.
bytearray의 내부 버퍼의 크기를 len으로 조정합니다.
매크로¶
이 매크로는 속도를 위해 안전을 희생하며 포인터를 확인하지 않습니다.
-
char *PyByteArray_AS_STRING(PyObject *bytearray)¶
Similar to
PyByteArray_AsString()
, but without error checking.
-
Py_ssize_t PyByteArray_GET_SIZE(PyObject *bytearray)¶
Similar to
PyByteArray_Size()
, but without error checking.