[issue16107] distutils2.version doesn't str() "1.0.post1" correctly

2012-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset d328dcd07449 by Éric Araujo in branch 'python3': Merge fixes for #16107 and #15957 from default http://hg.python.org/distutils2/rev/d328dcd07449 -- ___ Python tracker

[issue16107] distutils2.version doesn't str() "1.0.post1" correctly

2012-10-27 Thread Éric Araujo
Éric Araujo added the comment: Fixed. Vinay, you probably want to apply this to your forked version module too. -- nosy: +vinay.sajip resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16107] distutils2.version doesn't str() "1.0.post1" correctly

2012-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e98237abde9 by Éric Araujo in branch 'default': Fix stringification of final versions (#16107). http://hg.python.org/distutils2/rev/6e98237abde9 -- nosy: +python-dev ___ Python tracker

[issue16107] distutils2.version doesn't str() "1.0.post1" correctly

2012-10-02 Thread Éric Araujo
Éric Araujo added the comment: Thanks, will apply. -- versions: +3rd party ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16107] distutils2.version doesn't str() "1.0.post1" correctly

2012-10-01 Thread Richard Jones
New submission from Richard Jones: The attached simple patch demonstrates the problem: >>> str(NormalizedVersion('1.0.post1')) '1.0.post1.z' and includes a fix. -- assignee: eric.araujo components: Distutils2 files: post-fix.patch keywords: patch messages: 171765 nosy: alexis, eric.ara