review/rutil.py @ 9cd3f1057ae1

api: factor out the hgrf logic into reusable functions
author Steve Losh <steve@stevelosh.com>
date Tue, 20 Jul 2010 19:43:02 -0400
parents 96afc843f1a7
children (none)
from mercurial import encoding

def tolocal(s):
    return encoding.tolocal(s.encode('UTF-8'))

def fromlocal(s):
    return s.decode(encoding.encoding, 'replace')