hgext3rd/__init__.py
author timeless@gmail.com
Fri, 26 Aug 2016 16:57:45 +0000
changeset 2000 c413e7c96265
parent 1901 85390446f8c1
child 2020 143c8e4dc22d
permissions -rw-r--r--
init: guard _namemap with repo.topics (issue5351) This prevents reading extra data on all repo commits when there is no topic for a given name. _namemap is called a lot, and it is often called for commit shas -- which should pretty much never be names of topics...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1901
85390446f8c1 packaging: fix setup.py and install as hgext3rd.topic
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
diff changeset
     1
from __future__ import absolute_import
85390446f8c1 packaging: fix setup.py and install as hgext3rd.topic
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
diff changeset
     2
import pkgutil
85390446f8c1 packaging: fix setup.py and install as hgext3rd.topic
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
diff changeset
     3
__path__ = pkgutil.extend_path(__path__, __name__)