Shorten 10_complex.py

Runtime testing took too long because ranges were larger than needed
Also use newer convention for marking runable codes
This commit is contained in:
rocky
2022-04-03 06:41:58 -04:00
parent 9735453283
commit bc71bf7acd
6 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ version = sys.version[0:3]
vers = sys.version_info[:2]
if sys.argv[1] in ("--run", "-r"):
suffix = "_run"
assert sys.argv >= 3
assert len(sys.argv) >= 3
py_source = sys.argv[2:]
i = 2
else: