[issue30092] Replace sys.version to sys.version_info in sysconfig.py

2017-04-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch contains too much unrelated changes. As for changing the definition of sysconfig.get_config_vars('py_version') I'm not sure it is worth to do bacause this loss an information. This is a duplicate issue24916. -- nosy: +serhiy.storchaka

[issue30092] Replace sys.version to sys.version_info in sysconfig.py

2017-04-18 Thread Dong-hee Na
Changes by Dong-hee Na : -- pull_requests: +1295 ___ Python tracker ___ ___

[issue30092] Replace sys.version to sys.version_info in sysconfig.py

2017-04-18 Thread Dong-hee Na
New submission from Dong-hee Na: Not to rely on sys.version here, its format is an implementation detail of CPython, use sys.version_info or sys.hexversion -- components: Library (Lib) messages: 291824 nosy: corona10 priority: normal severity: normal status: open title: Replace