dispatch: mark callcatch() as a private function
authorYuya Nishihara <yuya@tcha.org>
Sat, 15 Apr 2017 12:58:06 +0900
changeset 32040 0fb78cb90ca7
parent 32039 2ab7578e685b
child 32041 38963a53ab0d
dispatch: mark callcatch() as a private function
mercurial/dispatch.py
tests/test-devel-warnings.t
--- a/mercurial/dispatch.py	Sat Apr 15 10:51:17 2017 +0900
+++ b/mercurial/dispatch.py	Sat Apr 15 12:58:06 2017 +0900
@@ -258,9 +258,9 @@
             ui.traceback()
             raise
 
-    return callcatch(ui, _runcatchfunc)
+    return _callcatch(ui, _runcatchfunc)
 
-def callcatch(ui, func):
+def _callcatch(ui, func):
     """like scmutil.callcatch but handles more high-level exceptions about
     config parsing and commands. besides, use handlecommandexception to handle
     uncaught exceptions.
--- a/tests/test-devel-warnings.t	Sat Apr 15 10:51:17 2017 +0900
+++ b/tests/test-devel-warnings.t	Sat Apr 15 12:58:06 2017 +0900
@@ -89,7 +89,7 @@
    */mercurial/dispatch.py:* in run (glob)
    */mercurial/dispatch.py:* in dispatch (glob)
    */mercurial/dispatch.py:* in _runcatch (glob)
-   */mercurial/dispatch.py:* in callcatch (glob)
+   */mercurial/dispatch.py:* in _callcatch (glob)
    */mercurial/scmutil.py* in callcatch (glob)
    */mercurial/dispatch.py:* in _runcatchfunc (glob)
    */mercurial/dispatch.py:* in _dispatch (glob)
@@ -120,7 +120,7 @@
    */mercurial/dispatch.py:* in run (glob)
    */mercurial/dispatch.py:* in dispatch (glob)
    */mercurial/dispatch.py:* in _runcatch (glob)
-   */mercurial/dispatch.py:* in callcatch (glob)
+   */mercurial/dispatch.py:* in _callcatch (glob)
    */mercurial/scmutil.py* in callcatch (glob)
    */mercurial/dispatch.py:* in _runcatchfunc (glob)
    */mercurial/dispatch.py:* in _dispatch (glob)
@@ -141,7 +141,7 @@
    */mercurial/dispatch.py:* in run (glob)
    */mercurial/dispatch.py:* in dispatch (glob)
    */mercurial/dispatch.py:* in _runcatch (glob)
-   */mercurial/dispatch.py:* in callcatch (glob)
+   */mercurial/dispatch.py:* in _callcatch (glob)
    */mercurial/scmutil.py* in callcatch (glob)
    */mercurial/dispatch.py:* in _runcatchfunc (glob)
    */mercurial/dispatch.py:* in _dispatch (glob)