# File lib/yaml.rb, line 199
    def YAML.parse_file( filepath )
        File.open( filepath ) do |f|
            parse( f )
        end
    end