mercurial/localrepo.py
changeset 44075 2122ffa903ea
parent 44060 a61287a95dc3
child 44104 85c4cd73996b
equal deleted inserted replaced
44074:806d14efec8d 44075:2122ffa903ea
  1642 
  1642 
  1643         Revset aliases from the configuration are not expanded. To expand
  1643         Revset aliases from the configuration are not expanded. To expand
  1644         user aliases, consider calling ``scmutil.revrange()`` or
  1644         user aliases, consider calling ``scmutil.revrange()`` or
  1645         ``repo.anyrevs([expr], user=True)``.
  1645         ``repo.anyrevs([expr], user=True)``.
  1646 
  1646 
  1647         Returns a revset.abstractsmartset, which is a list-like interface
  1647         Returns a smartset.abstractsmartset, which is a list-like interface
  1648         that contains integer revisions.
  1648         that contains integer revisions.
  1649         '''
  1649         '''
  1650         tree = revsetlang.spectree(expr, *args)
  1650         tree = revsetlang.spectree(expr, *args)
  1651         return revset.makematcher(tree)(self)
  1651         return revset.makematcher(tree)(self)
  1652 
  1652