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 christoph
Recipients christoph
Date 2009-08-06.11:14:37
SpamBayes Score 7.9677307e-07
Marked as misclassified No
Message-id <1249557279.0.0.0016050381192.issue6656@psf.upfronthosting.co.za>
In-reply-to
Content
This patch removes '%%' entities from the regex results and only
replaces other matches with '%s' which later then get replaced by
localized versions so that escaped percentage entities don't show up in
localized parsing anymore.

Removing case '%%' from the regex completely does not sound feasible
and will result in '%%d' having a match '%d', though d should be a
normal character.

The replacing of regex matches does not look that beautiful, feel free
to rewrite said part.
History
Date User Action Args
2009-08-06 11:14:39christophsetrecipients: + christoph
2009-08-06 11:14:39christophsetmessageid: <1249557279.0.0.0016050381192.issue6656@psf.upfronthosting.co.za>
2009-08-06 11:14:37christophlinkissue6656 messages
2009-08-06 11:14:37christophcreate