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