mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
9 lines
139 B
Python
9 lines
139 B
Python
fd = open('README.md')
|
|
assert 'RustPython' in fd.read()
|
|
|
|
try:
|
|
open('DoesNotExist')
|
|
assert False
|
|
except FileNotFoundError:
|
|
pass
|