Hi,
On 25/09/18 20:30, Yury Selivanov wrote:
What's the current plan for what version of Python we release after 3.9?
[snip]
For the record, we account for the following version tests when
analysing code (on lgtm.com):
sys.version == "3"
sys.version_info > (3,)
sys.version_info[0] == 3
sys.version_info[:2] >= (3,0)
sys.hexversion > 0x03000000
Of these forms, `sys.version[0] == "3"` and `sys.version_info[0] == 3`
will be broken by changing the major version to 4.
Personally, I prefer 3.10 to 4.0 unless there is a significant language
change involved.
Cheers,
Mark.
_______________________________________________
python-committers mailing list
python-committers@python.org
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/