From 7c53988baefb268dcf4a18fda17c54394028ae14 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Sat, 10 Aug 2013 00:44:30 -0600 Subject: [PATCH] Note that you have to add PYTHONSTARTUP to your profile --- jedi/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jedi/utils.py b/jedi/utils.py index 780e756a..0e0a9d26 100644 --- a/jedi/utils.py +++ b/jedi/utils.py @@ -32,6 +32,9 @@ def setup_readline(): import readline, rlcompleter readline.parse_and_bind("tab: complete") + You'll also need to add ``export PYTHONSTARTUP=$HOME/.pythonrc.py`` to + your bash profile (usually ``.bash_profile`` or ``.profile``). + """ try: import readline