hgext/__init__.py
author Maciej Fijalkowski <fijall@gmail.com>
Sun, 24 Apr 2016 14:21:38 +0300
changeset 29133 255274719dc1
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
pure: write a really lazy version of pure indexObject On PyPy this version performs reasonably well compared to C version. Example command is "hg id" which gets faster, depending on details of your operating system and hard drive (it's bottlenecked on stat mostly) There is potential for improvements by storing extra as a condensed struct too.

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)