Files
RustPython/tests/snippets/builtin_open.py
2019-02-07 07:30:53 -07:00

9 lines
139 B
Python

fd = open('README.md')
assert 'RustPython' in fd.read()
try:
open('DoesNotExist')
assert False
except FileNotFoundError:
pass