2016-05-02 14:15:11 +03:00
|
|
|
import uio as io
|
2016-03-25 15:01:19 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
io.BytesIO
|
|
|
|
io.BufferedWriter
|
|
|
|
except AttributeError:
|
2021-03-15 19:27:36 +05:30
|
|
|
print("SKIP")
|
2017-06-10 20:14:16 +03:00
|
|
|
raise SystemExit
|
2016-03-25 15:01:19 +02:00
|
|
|
|
|
|
|
bts = io.BytesIO()
|
|
|
|
buf = io.BufferedWriter(bts, 8)
|
|
|
|
|
|
|
|
buf.write(b"foobar")
|
|
|
|
print(bts.getvalue())
|
|
|
|
buf.write(b"foobar")
|
|
|
|
# CPython has different flushing policy, so value below is different
|
|
|
|
print(bts.getvalue())
|
|
|
|
buf.flush()
|
|
|
|
print(bts.getvalue())
|
|
|
|
buf.flush()
|
|
|
|
print(bts.getvalue())
|
2017-01-17 13:12:50 +11:00
|
|
|
|
|
|
|
# special case when alloc is a factor of total buffer length
|
|
|
|
bts = io.BytesIO()
|
|
|
|
buf = io.BufferedWriter(bts, 1)
|
|
|
|
buf.write(b"foo")
|
|
|
|
print(bts.getvalue())
|