Mercurial > hg
diff contrib/byteify-strings.py @ 43379:bb509f39d387 stable
contrib: require Python 3.6 for byteify-strings.py
This script makes use of `token.COMMENT`, which apparently
isn't present until Python 3.6. So make the script and its
test conditional on Python 3.6.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 02 Nov 2019 11:48:38 -0700 |
parents | 2372284d9457 |
children | 09234eeae206 |
line wrap: on
line diff
--- a/contrib/byteify-strings.py Sat Nov 02 11:42:46 2019 -0700 +++ b/contrib/byteify-strings.py Sat Nov 02 11:48:38 2019 -0700 @@ -339,7 +339,7 @@ if __name__ == '__main__': - if sys.version_info.major < 3: - print('This script must be run under Python 3.') + if sys.version_info[0:2] < (3, 6): + print('This script must be run under Python 3.6+') sys.exit(3) main()