review/rutil.py @ a9a6bf62224c

api: handle diffs with no content (adds, removes, etc)
author Steve Losh <steve@stevelosh.com>
date Tue, 20 Jul 2010 18:27:53 -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')