# File lib/date.rb, line 1808
  def to_time
    d = new_offset(0)
    d.instance_eval do
      Time.utc(year, mon, mday, hour, min, sec +
               sec_fraction)
    end.
        getlocal
  end