[issue14264] Comparison bug in distutils2.version

2013-06-25 Thread Éric Araujo
Éric Araujo added the comment: Yes. -- resolution: -> fixed stage: test needed -> committed/rejected status: open -> closed versions: -Python 3.3 ___ Python tracker ___ ___

[issue14264] Comparison bug in distutils2.version

2013-06-23 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: What the status of this issue?: the changeset http://hg.python.org/distutils2/rev/1e0ca4594a2a mentioned in msg155480 seems to add tests (but it hasn't been add to the issue explicitly). Can the issue be closed? -- nosy: +francismb __

[issue14264] Comparison bug in distutils2.version

2012-03-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1e0ca4594a2a by Tarek Ziade in branch 'default': Removed the trailing zero wiping (#14264) http://hg.python.org/distutils2/rev/1e0ca4594a2a -- nosy: +python-dev ___ Python tracker

[issue14264] Comparison bug in distutils2.version

2012-03-12 Thread Éric Araujo
Éric Araujo added the comment: More info: The command to reproduce the bug is “pysetup install "zope.event (3.4.0)"”, which gets zope.event 3.4.1. The bug comes from d2.version.VersionPredicate.match: >>> predicate = VersionPredicate('zope.event (3.4.0)') >>> predicate.match('3.4.0') True >>