diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-14 00:27:35 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-14 00:27:35 +0000 |
commit | 7e35597c2f6c606ab038db1c23e19561ca8a6553 (patch) | |
tree | e92382408ea4b1a177c5298c569aabb87335422f | |
parent | 373539e9f175f3d892fc2ad2f46386a5b3911462 (diff) | |
download | ruby-7e35597c2f6c606ab038db1c23e19561ca8a6553.tar.gz ruby-7e35597c2f6c606ab038db1c23e19561ca8a6553.tar.xz ruby-7e35597c2f6c606ab038db1c23e19561ca8a6553.zip |
* lib/time.rb: do not reference Time directly from the inside of
definitions. [ruby-dev:33059]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/time.rb | 18 |
2 files changed, 14 insertions, 9 deletions
@@ -1,3 +1,8 @@ +Mon Jan 14 09:19:07 2008 Tadayoshi Funaba <tadf@dotrb.org> + + * lib/time.rb: do not reference Time directly from the inside of + definitions. [ruby-dev:33059] + Mon Jan 14 05:44:44 2008 NARUSE, Yui <naruse@ruby-lang.org> * enc/*.c: add replicas and aliases. diff --git a/lib/time.rb b/lib/time.rb index 201f2fee3..b306d0a45 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -66,7 +66,7 @@ class Time 'N' => -1, 'O' => -2, 'P' => -3, 'Q' => -4, 'R' => -5, 'S' => -6, 'T' => -7, 'U' => -8, 'V' => -9, 'W' => -10, 'X' => -11, 'Y' => -12, } - def zone_offset(zone, year=Time.now.year) + def zone_offset(zone, year=self.now.year) off = nil zone = zone.upcase if /\A([+-])(\d\d):?(\d\d)\z/ =~ zone @@ -75,9 +75,9 @@ class Time off = zone.to_i * 3600 elsif ZoneOffset.include?(zone) off = ZoneOffset[zone] * 3600 - elsif ((t = Time.local(year, 1, 1)).zone.upcase == zone rescue false) + elsif ((t = self.local(year, 1, 1)).zone.upcase == zone rescue false) off = t.utc_offset - elsif ((t = Time.local(year, 7, 1)).zone.upcase == zone rescue false) + elsif ((t = self.local(year, 7, 1)).zone.upcase == zone rescue false) off = t.utc_offset end off @@ -177,7 +177,7 @@ class Time if off year, mon, day, hour, min, sec = apply_offset(year, mon, day, hour, min, sec, off) - t = Time.utc(year, mon, day, hour, min, sec, usec) + t = self.utc(year, mon, day, hour, min, sec, usec) t.localtime if !zone_utc?(zone) t else @@ -236,7 +236,7 @@ class Time # # A failure for Time.parse should be checked, though. # - def parse(date, now=Time.now) + def parse(date, now=self.now) d = Date._parse(date, false) year = d[:year] year = yield(year) if year && block_given? @@ -250,7 +250,7 @@ class Time # block. For example: # # Time.strptime(...) {|y| y < 100 ? (y >= 69 ? y + 1900 : y + 2000) : y} - def strptime(date, format, now=Time.now) + def strptime(date, format, now=self.now) d = Date._strptime(date, format) raise ArgumentError, "invalid strptime format - `#{format}'" unless d year = d[:year] @@ -344,7 +344,7 @@ class Time else year += 1900 end - Time.utc(year, $2, $1.to_i, $4.to_i, $5.to_i, $6.to_i) + self.utc(year, $2, $1.to_i, $4.to_i, $5.to_i, $6.to_i) elsif /\A\s* (?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\x20 (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\x20 @@ -389,9 +389,9 @@ class Time zone = $8 year, mon, day, hour, min, sec = apply_offset(year, mon, day, hour, min, sec, zone_offset(zone)) - Time.utc(year, mon, day, hour, min, sec, usec) + self.utc(year, mon, day, hour, min, sec, usec) else - Time.local(year, mon, day, hour, min, sec, usec) + self.local(year, mon, day, hour, min, sec, usec) end else raise ArgumentError.new("invalid date: #{date.inspect}") |