summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2009-09-07 19:48:28 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2009-09-07 19:48:28 +0200
commit9acb34a890f19509b78f3b17376b977672f7c1fc (patch)
tree4f4696300afbc65cf8c0822f178bc381ea2e8e0b
parent1269786cadbe70683a53724179ec2d2f05efc211 (diff)
downloadastroid-git-9acb34a890f19509b78f3b17376b977672f7c1fc.tar.gz
[B] again the Yield bug
-rw-r--r--node_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_classes.py b/node_classes.py
index 756df8f7..2fdf301f 100644
--- a/node_classes.py
+++ b/node_classes.py
@@ -385,6 +385,6 @@ class WithNG(With, BlockRangeMixIn, StmtMixIn, NodeNG):
return self.expr.tolineno
-class YieldNG(Yield, StmtMixIn, NodeNG):
+class YieldNG(Yield, NodeNG):
"""class representing a Yield node"""