Mercurial > genshi > genshi-test
view fixes/fix_unicode_in_strings.py @ 937:459e1fed2c92
Update upgrade documentation to refer to the development version and not the py3k branch.
author | hodgestar |
---|---|
date | Fri, 18 Mar 2011 09:51:59 +0000 |
parents | 1a86e0af2ae1 |
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