[issue23348] distutils.LooseVersion fails to compare two valid versions

2015-01-30 Thread Éric Araujo
Éric Araujo added the comment: Yes, thanks. Please weigh in on the other ticket. -- status: open -> closed superseder: -> distutils.LooseVersion fails to compare number and a word ___ Python tracker __

[issue23348] distutils.LooseVersion fails to compare two valid versions

2015-01-30 Thread Guillaume
Guillaume added the comment: Do you mean http://bugs.python.org/issue14894 ? -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue23348] distutils.LooseVersion fails to compare two valid versions

2015-01-30 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. I think there’s already a long discussion in another ticket but don’t have time to search right now. -- resolution: -> duplicate ___ Python tracker _

[issue23348] distutils.LooseVersion fails to compare two valid versions

2015-01-29 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23348] distutils.LooseVersion fails to compare two valid versions

2015-01-29 Thread Guillaume
New submission from Guillaume: $ python2.7 -c "from distutils.version import LooseVersion as V; print V('3.16.0-0.bpo.4-amd64') > V('3.16-0.bpo.2-amd64')" False $ python3.4 -c "from distutils.version import LooseVersion as V; print(V('3.16.0-0.bpo.4-amd64') > V('3.16-0.bpo.2-amd64'))" Tracebac