Files
RustPython/tests/snippets/builtin_open.py
2019-03-10 03:11:28 +01:00

11 lines
234 B
Python

from testutils import assert_raises
fd = open('README.md')
assert 'RustPython' in fd.read()
assert_raises(FileNotFoundError, lambda: open('DoesNotExist'))
# Use open as a context manager
with open('README.md') as fp:
fp.read()