summaryrefslogtreecommitdiff
path: root/nodes.py
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-18 10:28:00 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-18 10:28:00 +0100
commitd9c0c863dfd886b61498cdc798989a67a47dbb23 (patch)
tree3ee2f979dbb0f757eb15dad375bbca7ba7d448c2 /nodes.py
parent09b92c5e521532066205a866508037b57f8f7fba (diff)
downloadastroid-git-d9c0c863dfd886b61498cdc798989a67a47dbb23.tar.gz
remove debug assertion
--HG-- branch : _ast_compat
Diffstat (limited to 'nodes.py')
-rw-r--r--nodes.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nodes.py b/nodes.py
index d7ff3b62..1a766208 100644
--- a/nodes.py
+++ b/nodes.py
@@ -145,7 +145,6 @@ class NodeNG:
def get_children(self):
d = self.__dict__
- assert hasattr(self, '_astng_fields'), (self, self.lineno)
for f in self._astng_fields:
attr = d[f]
if attr is None: