summaryrefslogtreecommitdiffstatshomepage
path: root/tests/io/stringio_with.py
blob: 6dc48c89329c8073c87f7561aa678c40e5ed9fc8 (plain) (blame)
1
2
3
4
5
6
import uio as io

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