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 lingster
Recipients ezio.melotti, lingster, mrabarnett
Date 2012-09-23.16:14:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348416868.74.0.37879499143.issue16007@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

I would like to make a small improvement to the exception raised when _compile() function fails with exception on line 245. 

Please see attached amended file. The line of code is amended from: 

    raise error, v # invalid expression

to:

    raise error, r'%s with pattern: %s' % (v, pattern) # invalid expression

As this is my first contribution, please let me know if this is the correct procedure to submit changes.

Kind regards,
Ling
History
Date User Action Args
2012-09-23 16:14:29lingstersetrecipients: + lingster, ezio.melotti, mrabarnett
2012-09-23 16:14:28lingstersetmessageid: <1348416868.74.0.37879499143.issue16007@psf.upfronthosting.co.za>
2012-09-23 16:14:27lingsterlinkissue16007 messages
2012-09-23 16:14:27lingstercreate