sapling/hgext3rd/rust/__init__.py
Mark Thomas faadc08f74 setup: build treedirstate and rusttreedirstate packages
The treedirstate and rusttreedirstate packages are only built if a suitable
version of Cargo is available.

Differential Revision: https://phab.mercurial-scm.org/D1412
2017-11-28 04:51:38 -08:00

7 lines
246 B
Python

from __future__ import absolute_import
import pkgutil
# Indicate that hgext3rd.rust is a namspace package, and other python path
# directories may still be searched for hgext3rd.rust libraries.
__path__ = pkgutil.extend_path(__path__, __name__)