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 mrabarnett
Recipients ezio.melotti, jpfisher, mrabarnett
Date 2014-08-01.21:19:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406927967.71.0.329496082291.issue22119@psf.upfronthosting.co.za>
In-reply-to
Content
In a regex, '+' is a metacharacter meaning "repeated one or more times".

"libstdc+" will match "libstd" followed by "c" repeated one or more times.

"libstdc++" will match "libstd" followed by "c" repeated one or more times, but then there's another "+", which it takes to mean that you want the repeat to be repeated, hence the exception.

'*' is also a metacharacter, this one meaning "repeated zero or more times".

In summary, not a bug.
History
Date User Action Args
2014-08-01 21:19:27mrabarnettsetrecipients: + mrabarnett, ezio.melotti, jpfisher
2014-08-01 21:19:27mrabarnettsetmessageid: <1406927967.71.0.329496082291.issue22119@psf.upfronthosting.co.za>
2014-08-01 21:19:27mrabarnettlinkissue22119 messages
2014-08-01 21:19:27mrabarnettcreate