review/rutil.py @ 6c9b5986c7e1 initial-docs

docs: start the api docs
author Steve Losh <steve@stevelosh.com>
date Mon, 12 Jul 2010 23:28:47 -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')