[issue25985] Use sys.version_info instead of sys.version

2016-02-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue25985] Use sys.version_info instead of sys.version

2016-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 935d7804d1be by Serhiy Storchaka in branch 'default': Issue #25985: sys.version_info is now used instead of sys.version https://hg.python.org/cpython/rev/935d7804d1be -- nosy: +python-dev ___ Python track

[issue25985] Use sys.version_info instead of sys.version

2016-02-10 Thread STINNER Victor
STINNER Victor added the comment: Review: LGTM, with a minor comment. -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mail

[issue25985] Use sys.version_info instead of sys.version

2016-02-10 Thread SilentGhost
SilentGhost added the comment: No further comments from me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25985] Use sys.version_info instead of sys.version

2016-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Updated patch addresses SilentGhosts comments. -- Added file: http://bugs.python.org/file41880/use_version_info_3.patch ___ Python tracker ___

[issue25985] Use sys.version_info instead of sys.version

2016-02-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Update patch uses less cryptic formatting expressions (thanks SilentGhost for suggestion), fixes Makefile.pre.in (thanks Andrew), and fixes yet few files. -- Added file: http://bugs.python.org/file41872/use_version_info_2.patch __

[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread Martin Panter
Martin Panter added the comment: See also Issue 24916 about more related fixes in Lib/sysconfig.py -- nosy: +martin.panter ___ Python tracker ___

[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread SilentGhost
SilentGhost added the comment: > On a related note, I think that > https://hg.python.org/cpython/file/tip/Makefile.pre.in#l571 should get the > same treatment. Agree, that should be included in the patch. -- nosy: +SilentGhost ___ Python tracker <

[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread Andrew Plummer
Andrew Plummer added the comment: On a related note, I think that https://hg.python.org/cpython/file/tip/Makefile.pre.in#l571 should get the same treatment. -- nosy: +aplummer ___ Python tracker _

[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone please make a review? We should solve this issue before releasing 3.10. -- ___ Python tracker ___ __

[issue25985] Use sys.version_info instead of sys.version

2015-12-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch replaces all occurrences of sys.version[:3] with '%d.%d' % sys.version_info[:2]. The former doesn't work with non-one-digit versions (such as 3.10 and 10.1). -- components: Distutils, Library (Lib) files: use_version_info.patch keywo