1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Add module naming comment.

This commit is contained in:
William Ting 2016-05-03 23:38:31 -07:00
parent 2e60fa2892
commit 797d97c9bf

View File

@ -18,7 +18,6 @@
along with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""
from __future__ import print_function
from difflib import SequenceMatcher
@ -41,6 +40,10 @@ else:
# Vendorized argparse for Python 2.6 support
from autojump_argparse import ArgumentParser
# autojump is not a standard python package but rather installed as a mixed
# shell + Python app with no outside dependencies (except Python). As a
# consequence we use relative imports and depend on file prefixes to prevent
# module conflicts.
from autojump_data import dictify
from autojump_data import entriefy
from autojump_data import Entry