summaryrefslogtreecommitdiff
path: root/astroid/mixins.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2015-07-25 15:16:56 +0200
committerFlorian Bruhin <me@the-compiler.org>2015-07-25 15:16:56 +0200
commita9582e447362cac362e20c0ca4d30ec0221bfec2 (patch)
tree83e119483c59e84cf1dac944a61cfdb13e81247f /astroid/mixins.py
parent1f6e4d633932f938224dbdf40fb29efb41ba0c10 (diff)
downloadastroid-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/mixins.py')
-rw-r--r--astroid/mixins.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/astroid/mixins.py b/astroid/mixins.py
index e7021906..ba36fbb9 100644
--- a/astroid/mixins.py
+++ b/astroid/mixins.py
@@ -18,10 +18,9 @@
"""This module contains some mixins for the different nodes.
"""
-from logilab.common.decorators import cachedproperty
-
from astroid.exceptions import (AstroidBuildingException, InferenceError,
NotFoundError)
+from astroid.decorators import cachedproperty
class BlockRangeMixIn(object):