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:
parent
2e60fa2892
commit
797d97c9bf
@ -18,7 +18,6 @@
|
|||||||
along with this program; if not, write to the Free Software Foundation, Inc.,
|
along with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
from difflib import SequenceMatcher
|
from difflib import SequenceMatcher
|
||||||
@ -41,6 +40,10 @@ else:
|
|||||||
# Vendorized argparse for Python 2.6 support
|
# Vendorized argparse for Python 2.6 support
|
||||||
from autojump_argparse import ArgumentParser
|
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 dictify
|
||||||
from autojump_data import entriefy
|
from autojump_data import entriefy
|
||||||
from autojump_data import Entry
|
from autojump_data import Entry
|
||||||
|
Loading…
Reference in New Issue
Block a user