diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2009-09-07 19:48:28 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2009-09-07 19:48:28 +0200 |
commit | 9acb34a890f19509b78f3b17376b977672f7c1fc (patch) | |
tree | 4f4696300afbc65cf8c0822f178bc381ea2e8e0b | |
parent | 1269786cadbe70683a53724179ec2d2f05efc211 (diff) | |
download | astroid-git-9acb34a890f19509b78f3b17376b977672f7c1fc.tar.gz |
[B] again the Yield bug
-rw-r--r-- | node_classes.py | 2 |
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""" |