From a1410de9e84f0d5d9957c4acfa76bea3548392b6 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 10 Dec 2015 16:53:08 +0100 Subject: [PATCH] Better description of the py__XXX__ attributes. --- jedi/evaluate/representation.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jedi/evaluate/representation.py b/jedi/evaluate/representation.py index 0d35e5c9..dffac8c2 100644 --- a/jedi/evaluate/representation.py +++ b/jedi/evaluate/representation.py @@ -26,6 +26,9 @@ py__iter__() Returns a generator of a set of types. py__class__() Returns the class of an instance. py__getitem__(index: int/str) Returns a a set of types of the index. Can raise an IndexError/KeyError. +py__file__() Only on modules. +py__package__() Only on modules. For the import system. +py__path__() Only on modules. For the import system. ====================================== ======================================== __