diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-10-11 19:06:30 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-10-11 19:06:30 +0300 |
commit | ad95c5699655a283b682837b6715fbe399229485 (patch) | |
tree | 4246660ed7cacc30d4cf7a258b12317d5ca0c09d /astroid/objects.py | |
parent | bd5057970b2941e2da843a68490de107c63f958a (diff) | |
download | astroid-git-ad95c5699655a283b682837b6715fbe399229485.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/objects.py b/astroid/objects.py index f80cf549..3ab0a65f 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, |