review/rutil.py @ 466feb89a9d1 initial-docs

Close the initial-docs branch!
author Steve Losh <steve@stevelosh.com>
date Tue, 13 Jul 2010 01:31:33 -0400
parents 1b9066798f87
children 96afc843f1a7
from mercurial import encoding

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

def fromlocal(s):
    return encoding.fromlocal(s).decode('UTF-8')