summaryrefslogtreecommitdiff
path: root/astroid/objects.py
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-19 20:43:45 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-19 20:43:45 +0300
commitd0ae4fa70b807324a6146ae63b5ff7789ed6c268 (patch)
tree187618196e2dbd754372e6d115ab1969546f503e /astroid/objects.py
parent91529224bd4ad1a80065a76a9e077697b9ebecd0 (diff)
downloadastroid-d0ae4fa70b807324a6146ae63b5ff7789ed6c268.tar.gz
Specify that inference objects can be found in the AST tree, but only after inference.
Diffstat (limited to 'astroid/objects.py')
-rw-r--r--astroid/objects.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/objects.py b/astroid/objects.py
index de0d192..ba60bba 100644
--- a/astroid/objects.py
+++ b/astroid/objects.py
@@ -19,8 +19,8 @@
"""
Inference objects are a way to represent composite AST nodes,
which are used only as inference results, so they can't be found in the
-code tree. For instance, inferring the following frozenset use, leads to an
-inferred FrozenSet:
+original AST tree. For instance, inferring the following frozenset use,
+leads to an inferred FrozenSet:
CallFunc(func=Name('frozenset'), args=Tuple(...))