# File lib/puppet/util/settings.rb, line 395
395:   def persection(section)
396:     section = section.to_sym
397:     self.each { |name, obj|
398:       if obj.section == section
399:         yield obj
400:       end
401:     }
402:   end