From 6e1d693c46c13c3f81466cdb38b5fe93a96b6bed Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 5 Feb 2013 18:45:16 +0100 Subject: [PATCH] evaluate_representation docstring --- jedi/evaluate_representation.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/jedi/evaluate_representation.py b/jedi/evaluate_representation.py index 285ff1f8..ed48f6b6 100644 --- a/jedi/evaluate_representation.py +++ b/jedi/evaluate_representation.py @@ -1,3 +1,14 @@ +""" +Like described in the :mod:`parsing_representation` module, there's a need for +an ast like module to represent the states of parsed modules. + +But now there are also structures in Python that need a little bit more than +that. An ``Instance`` for example is only a ``Class`` before it is +instantiated. This class represents these cases. + +So, why is there also a ``Class`` class here? Well, there are decorators and +they change classes in Python 3. +""" import sys import copy