diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-11-23 14:33:47 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-11-23 14:33:47 +0100 |
commit | 3354f2df804360b4a58fe4c4aa84980b3deeab5d (patch) | |
tree | 7e18f61b8ea69d16c2c408e77005306a47455d6c /infutils.py | |
parent | a08a442fa924f94e2007552e91adae16d300b946 (diff) | |
parent | 15e7aad2d0ca47b8d8c3b56d6fef327d3b295e5c (diff) | |
download | astroid-git-3354f2df804360b4a58fe4c4aa84980b3deeab5d.tar.gz |
merge
Diffstat (limited to 'infutils.py')
-rw-r--r-- | infutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/infutils.py b/infutils.py index 1e5aa9c5..464996a1 100644 --- a/infutils.py +++ b/infutils.py @@ -25,10 +25,10 @@ __doctype__ = "restructuredtext en" from logilab.common.compat import chain, imap from logilab.astng._exceptions import InferenceError, NotFoundError, UnresolvableName -from logilab.astng.nodes import Proxy_, List, Tuple, Function, If, TryExcept +from logilab.astng._nodes import BaseClass, List, Tuple, Function, If, TryExcept -class Proxy(Proxy_): +class Proxy(BaseClass): """a simple proxy object""" _proxied = None |