module Nokogiri::XML::PP::Node

def inspect

def inspect
  # handle the case where an exception is thrown during object construction
  if respond_to?(:data_ptr?) && !data_ptr?
    return "#<#{self.class}:#{format("0x%x", object_id)} (no data)>"
  end
  attributes = inspect_attributes.reject do |x|
    attribute = send(x)
    !attribute || (attribute.respond_to?(:empty?) && attribute.empty?)
  rescue NoMethodError
    true
  end
  attributes = if inspect_attributes.length == 1
    send(attributes.first).inspect
  else
    attributes.map do |attribute|
      "#{attribute}=#{send(attribute).inspect}"
    end.join(" ")
  end
  "#<#{self.class}:#{format("0x%x", object_id)} #{attributes}>"
end