From 8bf898524777a6252da27b1544616bcd5176c677 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 14 Jan 2014 00:08:25 +0100 Subject: [PATCH] move replstartup to the api --- jedi/__main__.py | 2 +- jedi/{ => api}/replstartup.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename jedi/{ => api}/replstartup.py (100%) diff --git a/jedi/__main__.py b/jedi/__main__.py index 285af7fc..7b1b2b76 100644 --- a/jedi/__main__.py +++ b/jedi/__main__.py @@ -5,4 +5,4 @@ from os.path import join, dirname, abspath if len(argv) == 2 and argv[1] == 'repl': # don't want to use __main__ only for repl yet, maybe we want to use it for # something else. So just use the keyword ``repl`` for now. - print(join(dirname(abspath(__file__)), 'replstartup.py')) + print(join(dirname(abspath(__file__)), 'api', 'replstartup.py')) diff --git a/jedi/replstartup.py b/jedi/api/replstartup.py similarity index 100% rename from jedi/replstartup.py rename to jedi/api/replstartup.py