# File lib/yaml.rb, line 142
    def YAML.load_file( filepath )
        File.open( filepath ) do |f|
            load( f )
        end
    end