# File lib/inifile.rb, line 248
  def each_section
    return unless block_given?
    @ini.each_key {|section| yield section}
    self
  end