diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-02-01 12:25:57 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-02-01 12:25:57 +0100 |
commit | 85a77c0c26b478ee102493259be1646894dfb85a (patch) | |
tree | 7e590774515fdbfc816321685dd326e960e42b8b /_exceptions.py | |
parent | 9d84aea964b35c7e11607de1b5f2a0a39a7c6a6a (diff) | |
download | astroid-git-85a77c0c26b478ee102493259be1646894dfb85a.tar.gz |
we don't need any NodeRemoved exception anymore
--HG--
branch : rebuild
Diffstat (limited to '_exceptions.py')
-rw-r--r-- | _exceptions.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/_exceptions.py b/_exceptions.py index c7462635..1c044cde 100644 --- a/_exceptions.py +++ b/_exceptions.py @@ -47,6 +47,4 @@ class NoDefault(ASTNGError): class IgnoreChild(Exception): """exception that maybe raised by visit methods to avoid children traversal """ - -class NodeRemoved(Exception): - """exception raised to interrupt the walk when a node is removed""" + |