From 4e9bb0c0624ebcd15ba1b9bd3aedf30eae1eccc7 Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 31 Aug 2013 17:53:38 +0430 Subject: [PATCH] add module_path documentation, fixes #306 --- jedi/api_classes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jedi/api_classes.py b/jedi/api_classes.py index e50fa6e1..e4b6d51c 100644 --- a/jedi/api_classes.py +++ b/jedi/api_classes.py @@ -80,6 +80,7 @@ class BaseDefinition(object): # generate a path to the definition self._module = definition.get_parent_until() self.module_path = self._module.path + """Shows the file path of a module. e.g. ``/usr/lib/python2.7/os.py``""" @property def start_pos(self):