hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Mon, 09 Jan 2017 17:39:44 +0900
changeset 30801 67ee7874e53b
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
revset: factor out getinteger() helper We have 4 revset functions that take integer arguments, and they handle their arguments in slightly different ways. This patch unifies them: - getstring() in place of getsymbol(), which is more consistent with the handling of integer revisions (both 1 and '1' are valid) - say "expects" instead of "requires" for type errors We don't need to catch TypeError since getstring() must return a string.

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)