review/rutil.py @ 959fb4d581f6 initial-docs

docs/api: add the repo layout in ascii art
author Steve Losh <steve@stevelosh.com>
date Mon, 12 Jul 2010 23:38:39 -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')