hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 25 Mar 2018 16:35:24 +0900
changeset 37988 dc1ed7fe33e4
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
sshserver: do setbinary() by caller (API) In most cases, stdio should be set to binary mode by the dispatcher, so the sshserver does not have to take care of that. The only exception was hg-ssh, which is fixed by this patch. .. api:: ``sshserver()`` no longer sets stdin and stdout to binary mode.

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