Add tests/testgc.py

This commit is contained in:
2026-03-19 18:38:34 +00:00
parent 9ab873baf6
commit 3901f62db2

10
tests/testgc.py Normal file
View File

@@ -0,0 +1,10 @@
input("gc")
try:
import gc
except Exception as ex:
print(ex.errno)
input("ugc")
try:
import ugc
except Exception as ex:
print(ex.errno)