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 jlt63
Recipients benjamin.peterson, jafo, jlt63, kermode, wmbrown
Date 2008-06-13.11:04:07
SpamBayes Score 0.18255949
Marked as misclassified No
Message-id <1213355050.53.0.50948488638.issue2234@psf.upfronthosting.co.za>
In-reply-to
Content
cygwinccompiler.py only uses the first group:

$ fgrep group cygwinccompiler.py
            gcc_version = StrictVersion(result.group(1))
            ld_version = StrictVersion(result.group(1))
            dllwrap_version = StrictVersion(result.group(1))

So, I would like to move forward with the regular expression from 
http://cygwin.com/ml/cygwin/2008-05/msg00622.html:

    (\d+\.\d+(\.(\d+))?([ab](\d+))?)

Can we get a consensus?
History
Date User Action Args
2008-06-13 11:04:10jlt63setspambayes_score: 0.182559 -> 0.18255949
recipients: + jlt63, jafo, kermode, benjamin.peterson, wmbrown
2008-06-13 11:04:10jlt63setspambayes_score: 0.182559 -> 0.182559
messageid: <1213355050.53.0.50948488638.issue2234@psf.upfronthosting.co.za>
2008-06-13 11:04:09jlt63linkissue2234 messages
2008-06-13 11:04:08jlt63create