mercurial/ui.py
changeset 38576 152f4822d210
parent 38528 313a940d49a3
child 38623 92c845c097aa
equal deleted inserted replaced
38575:f442c9494ec7 38576:152f4822d210
   154 # churn =
   154 # churn =
   155 """,
   155 """,
   156 }
   156 }
   157 
   157 
   158 def _maybestrurl(maybebytes):
   158 def _maybestrurl(maybebytes):
   159     return util.rapply(pycompat.strurl, maybebytes)
   159     return pycompat.rapply(pycompat.strurl, maybebytes)
   160 
   160 
   161 def _maybebytesurl(maybestr):
   161 def _maybebytesurl(maybestr):
   162     return util.rapply(pycompat.bytesurl, maybestr)
   162     return pycompat.rapply(pycompat.bytesurl, maybestr)
   163 
   163 
   164 class httppasswordmgrdbproxy(object):
   164 class httppasswordmgrdbproxy(object):
   165     """Delays loading urllib2 until it's needed."""
   165     """Delays loading urllib2 until it's needed."""
   166     def __init__(self):
   166     def __init__(self):
   167         self._mgr = None
   167         self._mgr = None