diff options
author | Florian Bruhin <me@the-compiler.org> | 2015-07-25 15:16:56 +0200 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2015-07-25 15:16:56 +0200 |
commit | a9582e447362cac362e20c0ca4d30ec0221bfec2 (patch) | |
tree | 83e119483c59e84cf1dac944a61cfdb13e81247f /astroid/objects.py | |
parent | 1f6e4d633932f938224dbdf40fb29efb41ba0c10 (diff) | |
download | astroid-git-a9582e447362cac362e20c0ca4d30ec0221bfec2.tar.gz |
Get rid of astroid.common.decorators.
This also implements an easier @cache decorator and removes @classproperty as
it only was used in an insignificant test.
--HG--
branch : no-logilab-common
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 b3f3caea..aeb4ecd9 100644 --- a/astroid/objects.py +++ b/astroid/objects.py @@ -26,7 +26,6 @@ leads to an inferred FrozenSet: """ -from logilab.common.decorators import cachedproperty import six from astroid import MANAGER @@ -41,6 +40,7 @@ from astroid.exceptions import ( from astroid.node_classes import const_factory from astroid.scoped_nodes import Class, Function from astroid.mixins import ParentAssignTypeMixin +from astroid.decorators import cachedproperty class FrozenSet(NodeNG, Instance, ParentAssignTypeMixin): |