summaryrefslogtreecommitdiff
path: root/astroid/objects.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-11 19:06:30 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-11 19:06:30 +0300
commitfe16fb4d0ef01db3eb1411a8a278cb5839b078f6 (patch)
tree69f3fc8d88b9cf14beea339dfbae22b2ec28ed0c /astroid/objects.py
parent68632aebe9b150925280d0abfd62552d7201727a (diff)
downloadastroid-fe16fb4d0ef01db3eb1411a8a278cb5839b078f6.tar.gz
Move bases.NodeNG and bases.Statement in node_classes
We're doing this in order to reduce the dependency hell which occurs when a module such as bases.py wants to use classes defined in node_classes.
Diffstat (limited to 'astroid/objects.py')
-rw-r--r--astroid/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/objects.py b/astroid/objects.py
index f80cf54..3ab0a65 100644
--- a/astroid/objects.py
+++ b/astroid/objects.py
@@ -54,7 +54,7 @@ class FrozenSet(node_classes._BaseContainer):
return builtins.getattr('frozenset')[0]
-class Super(bases.NodeNG):
+class Super(node_classes.NodeNG):
"""Proxy class over a super call.
This class offers almost the same behaviour as Python's super,