hgext3rd/__init__.py
author Raphaël Gomès <rgomes@octobus.net>
Tue, 14 Jan 2020 18:03:28 +0100
changeset 44136 baa4e7fdfd47
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
rust-utils: add Rust implementation of Python's "os.path.splitdrive" I also wrote the NT version although I didn't mean to at first, so I thought I would keep it, so that any further effort to get the Rust code working on Windows is a little easier. Differential Revision: https://phab.mercurial-scm.org/D7864

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

__path__ = pkgutil.extend_path(__path__, __name__)