hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 07 Jan 2021 14:48:57 -0800
changeset 46278 58ca94869287
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
shelve: move function for opening .patch file to new shelf class The `opener()` method was used specifically for the `.patch` file, and the new `Shelf` class deals with all files involved in a shelf, so I renamed the function in the process. Differential Revision: https://phab.mercurial-scm.org/D9705

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)