This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients alexis, eric.araujo, j1m, janjaapdriessen, tarek
Date 2012-03-12.20:42:48
SpamBayes Score 3.8582755e-05
Marked as misclassified No
Message-id <1331584969.63.0.0434919215344.issue14264@psf.upfronthosting.co.za>
In-reply-to
Content
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
>>> predicate.match('3.4.1')
True
>>> predicate.match('3.4.2')
True
>>> predicate.match('3.6.2')
False
History
Date User Action Args
2012-03-12 20:42:49eric.araujosetrecipients: + eric.araujo, tarek, j1m, alexis, janjaapdriessen
2012-03-12 20:42:49eric.araujosetmessageid: <1331584969.63.0.0434919215344.issue14264@psf.upfronthosting.co.za>
2012-03-12 20:42:49eric.araujolinkissue14264 messages
2012-03-12 20:42:48eric.araujocreate