view hgext3rd/__init__.py @ 48818:13d705c98914

cext: use PyLong symbols We no longer support Python 2. So we can unconditionally use the Python 3 symbol names. Differential Revision: https://phab.mercurial-scm.org/D12229
author Gregory Szorc <gregory.szorc@gmail.com>
date Sun, 20 Feb 2022 15:50:46 -0700
parents 2372284d9457
children 6000f5b25c9b
line wrap: on
line source

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

__path__ = pkgutil.extend_path(__path__, __name__)