This commit is contained in:
BLUELOVETH 2023-06-01 00:41:11 +08:00
parent 66301591a2
commit 857eec66f1
3 changed files with 9 additions and 0 deletions

1
tests/test2/__init__.py Normal file
View File

@ -0,0 +1 @@
from ._a import D

1
tests/test2/_a.py Normal file
View File

@ -0,0 +1 @@
from ._b import D

7
tests/test2/_b.py Normal file
View File

@ -0,0 +1,7 @@
D = 10
try:
import test
exit(1)
except ImportError:
pass