A Python exposed version of cBufferedByteStream. This exists because
of various intricacies of Cythons cpdef (probably just user stupidity
tho)
|
|
|
|
|
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
|
a new object with type S, a subtype of T
|
|
|
|
|
|
|
|
|
|
|
|
|
peek(...)
Looks size bytes ahead in the stream, returning what it
finds, returning the stream pointer to its initial position. |
|
|
|
|
read(...)
Reads size bytes from the stream. |
|
|
|
|
read_double(...)
Reads an 8 byte float from the stream. |
|
|
|
|
read_float(...)
Reads a 4 byte float from the stream. |
|
|
|
|
write(...)
Writes the content of the specified x into this buffer. |
|
|
|
|
|
|
|
|
|
|
write_short(...)
Writes a 2 byte integer to the stream. |
|
|
|
|
write_ulong(...)
Writes a 4 byte unsigned integer to the stream. |
|
|
|
|
write_ushort(...)
Writes a 2 byte unsigned integer to the stream. |
|
|
|
Inherited from cBufferedByteStream:
__nonzero__,
append,
at_eof,
consume,
getvalue,
read_24bit_int,
read_24bit_uint,
read_char,
read_long,
read_short,
read_uchar,
read_ulong,
read_ushort,
read_utf8_string,
remaining,
seek,
tell,
truncate,
write_24bit_int,
write_24bit_uint,
write_float,
write_long,
write_uchar,
write_utf8_string
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__subclasshook__
|