hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 11 Dec 2018 22:34:07 +0900
branchstable
changeset 40472 03f7d0822ec1
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
worker: do not swallow exception occurred in main process Before, SystemExit(255) would be most likely raised since the worker processes were terminated by the main process and the status would be set to 255 in response. We should instead re-raise the exception occurred first. It's pretty hard to debug problems like the issue 6035 with no traceback.

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