WIP - more 3.8 grammar stuff

This commit is contained in:
rocky
2019-03-30 00:27:48 -04:00
parent 5a6550b353
commit 19a95be3ef
3 changed files with 33 additions and 4 deletions

View File

@@ -72,9 +72,9 @@ def main_bin():
if not (sys.version_info[0:2] in ((2, 6), (2, 7), (3, 0),
(3, 1), (3, 2), (3, 3),
(3, 4), (3, 5), (3, 6),
(3, 7)
(3, 7), (3, 8)
)):
print('Error: %s requires Python 2.6-3.7' % program,
print('Error: %s requires Python 2.6-3.8' % program,
file=sys.stderr)
sys.exit(-1)