Mercurial > genshi > mirror
view fixes/fix_unicode_in_strings.py @ 921:07defc3702b3 experimental-py3k
Fix handling of tails in py:match processing. See Genshi ticket #399.
author | hodgestar |
---|---|
date | Mon, 29 Nov 2010 20:45:22 +0000 |
parents | c74a141a48ff |
children |
line wrap: on
line source
"""Fixer that changes expressions inside strings literals from u"..." to "...". """ import re from lib2to3 import fixer_base _literal_re = re.compile(r"(.+?)\b[uU]([rR]?[\'\"])") class FixUnicodeInStrings(fixer_base.BaseFix): PATTERN = "STRING" def transform(self, node, results): new = node.clone() new.value = _literal_re.sub(r"\1\2", new.value) return new