# File lib/graphviz/node.rb, line 101
    def each_attribut(global = true, &b)
      attrs = @oAttrNode.to_h
      if global
        attrs = pg.node.to_h.merge attrs
      end
      attrs.each do |k,v|
        yield(k,v)
      end
    end