circuitpython/tests/basics/io_stringio_with.py

7 lines
105 B
Python

import io
# test __enter__/__exit__
with io.StringIO() as b:
b.write("foo")
print(b.getvalue())