Home
last modified time | relevance | path

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

/third_party/python/Include/
Dbytearrayobject.h20 PyAPI_DATA(PyTypeObject) PyByteArray_Type;
24 #define PyByteArray_Check(self) PyObject_TypeCheck(self, &PyByteArray_Type)
25 #define PyByteArray_CheckExact(self) Py_IS_TYPE(self, &PyByteArray_Type)
/third_party/python/Doc/c-api/
Dbytearray.rst16 .. c:var:: PyTypeObject PyByteArray_Type
/third_party/python/Objects/
Dbytearrayobject.c84 return PyObject_CallOneArg((PyObject *)&PyByteArray_Type, input); in PyByteArray_FromObject()
124 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
2052 PyObject *result = _PyBytes_FromHex(string, type == &PyByteArray_Type); in bytearray_fromhex_impl()
2053 if (type != &PyByteArray_Type && result != NULL) { in bytearray_fromhex_impl()
2291 PyTypeObject PyByteArray_Type = { variable
Dobject.c1865 &PyByteArray_Type,
/third_party/python/Modules/_sqlite/
Dmodule.c154 || type == &PyUnicode_Type || type == &PyByteArray_Type) { in pysqlite_register_adapter_impl()
Dcursor.c420 } else if (self->connection->text_factory == (PyObject*)&PyByteArray_Type) { in _pysqlite_fetch_one_row()
/third_party/python/PC/
Dpython3dll.c748 EXPORT_DATA(PyByteArray_Type)
/third_party/python/Doc/data/
Dstable_abi.dat28 var,PyByteArray_Type,3.2,,
/third_party/python/Modules/
D_pickle.c2490 (PyObject *) &PyByteArray_Type); in save_bytearray()
2496 (PyObject *) &PyByteArray_Type, in save_bytearray()
4355 else if (type == &PyByteArray_Type) { in save()
/third_party/python/Python/
Dbltinmodule.c3062 SETBUILTIN("bytearray", &PyByteArray_Type); in _PyBuiltin_Init()
/third_party/python/Tools/c-analyzer/
DTODO628 Objects/bytearrayobject.c:PyByteArray_Type PyTypeObject PyByteArray_Type
/third_party/python/Misc/
Dstable_abi.toml418 [data.PyByteArray_Type]
/third_party/python/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv14 Objects/bytearrayobject.c - PyByteArray_Type -
/third_party/python/Lib/test/
Dclinic.test143 i: object(subclass_of="&PyByteArray_Type")