pocketpy/tests/30_import.py
blueloveTH ddd841f0c6 ...
2023-06-10 12:11:39 +08:00

8 lines
94 B
Python

try:
import os
except ImportError:
exit(0)
import test1
assert test1.add(1, 2) == 13