From 797d97c9bffd133f97ce05ce3b9f8ef72807bd86 Mon Sep 17 00:00:00 2001 From: William Ting Date: Tue, 3 May 2016 23:38:31 -0700 Subject: [PATCH] Add module naming comment. --- bin/autojump | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/autojump b/bin/autojump index 6eeec103..247c24ea 100755 --- a/bin/autojump +++ b/bin/autojump @@ -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