review/rutil.py @ de7319315abe

web: it's 2010 -- time to use git diffs
author Steve Losh <steve@stevelosh.com>
date Tue, 20 Jul 2010 19:05:06 -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')