Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/future/types/
H A Dnewbytes.py175 def join(self, iterable_of_bytes): argument
177 if isbytes(iterable_of_bytes) or istext(iterable_of_bytes):
178 raise TypeError(errmsg.format(0, type(iterable_of_bytes)))
179 for i, item in enumerate(iterable_of_bytes):
182 return newbytes(super(newbytes, self).join(iterable_of_bytes))
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/future/types/
H A Dnewbytes.py204 def join(self, iterable_of_bytes): argument
206 if isbytes(iterable_of_bytes) or istext(iterable_of_bytes):
207 raise TypeError(errmsg.format(0, type(iterable_of_bytes)))
208 for i, item in enumerate(iterable_of_bytes):
211 return newbytes(super(newbytes, self).join(iterable_of_bytes))
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/future/types/
H A Dnewbytes.py204 def join(self, iterable_of_bytes): argument
206 if isbytes(iterable_of_bytes) or istext(iterable_of_bytes):
207 raise TypeError(errmsg.format(0, type(iterable_of_bytes)))
208 for i, item in enumerate(iterable_of_bytes):
211 return newbytes(super(newbytes, self).join(iterable_of_bytes))
/dports/devel/py-future/future-0.18.2/src/future/types/
H A Dnewbytes.py204 def join(self, iterable_of_bytes): argument
206 if isbytes(iterable_of_bytes) or istext(iterable_of_bytes):
207 raise TypeError(errmsg.format(0, type(iterable_of_bytes)))
208 for i, item in enumerate(iterable_of_bytes):
211 return newbytes(super(newbytes, self).join(iterable_of_bytes))
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Dbytearrayobject.c1979 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1982 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1889 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1892 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Dbytearrayobject.c1979 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1982 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1889 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1892 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python311/Python-3.11.0a3/Objects/
H A Dbytearrayobject.c2027 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
2030 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1854 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1857 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python37/Python-3.7.12/Objects/
H A Dbytearrayobject.c1966 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1969 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1898 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1901 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python310/Python-3.10.1/Objects/
H A Dbytearrayobject.c2027 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
2030 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1833 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1836 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Dbytearrayobject.c1979 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1982 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1889 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1892 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python39/Python-3.9.9/Objects/
H A Dbytearrayobject.c2037 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
2040 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1818 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1821 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/lang/python38/Python-3.8.12/Objects/
H A Dbytearrayobject.c1979 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1982 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1889 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1892 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Objects/
H A Dbytearrayobject.c1979 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join() argument
1982 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytearray_join()
H A Dbytesobject.c1889 bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes) in bytes_join() argument
1892 return stringlib_bytes_join((PyObject*)self, iterable_of_bytes); in bytes_join()