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 timehorse
Recipients georg.brandl, grafen, niemeyer, timehorse
Date 2008-10-13.13:09:07
SpamBayes Score 7.427025e-10
Marked as misclassified No
Message-id <1223903363.61.0.492056684483.issue1456280@psf.upfronthosting.co.za>
In-reply-to
Content
This is another version of the redundant repeat issue defined in issues 
2537 and 1633953 and although not described by the original report for 
issue 214033, the comments further down that issue also describe a 
similar situation.

In this case, the problem arises from the '[(](?P<key>[^)]*)?[)]' 
portion of your regexp code because you have a zero-or-more repeat 
repeated zero-or-one times, which in the current version of python 
causes this error.  Technically, the outer zero-or-one operator ('?') is 
redundant and you can eliminate it, but this IMHO should not cause the 
error listed below and I will look into a solution in issue 2636.
History
Date User Action Args
2008-10-13 13:09:23timehorsesetrecipients: + timehorse, georg.brandl, niemeyer, grafen
2008-10-13 13:09:23timehorsesetmessageid: <1223903363.61.0.492056684483.issue1456280@psf.upfronthosting.co.za>
2008-10-13 13:09:07timehorselinkissue1456280 messages
2008-10-13 13:09:07timehorsecreate