1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/mathn.rb (Rational::inspect): should preserve original

operand.  [ruby-core:05806]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-09-17 16:00:23 +00:00
parent cc24eb8518
commit 07fc7586b7
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sat Sep 17 23:25:04 2005 sheepman <sheepman@sheepman.sakura.ne.jp>
* lib/mathn.rb (Rational::inspect): should preserve original
operand. [ruby-core:05806]
Sat Sep 17 23:20:27 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/cgi.rb (CGI::Cookie): should handle multiple values for a

View file

@ -124,6 +124,7 @@ class Rational
def ** (other)
if other.kind_of?(Rational)
other2 = other
if self < 0
return Complex.new!(self, 0) ** other
elsif other == 0
@ -144,7 +145,7 @@ class Rational
for elm in npd
elm[1] = elm[1] * other
if !elm[1].kind_of?(Integer) and elm[1].denominator != 1
return Float(self) ** other
return Float(self) ** other2
end
elm[1] = elm[1].to_i
end
@ -152,7 +153,7 @@ class Rational
for elm in dpd
elm[1] = elm[1] * other
if !elm[1].kind_of?(Integer) and elm[1].denominator != 1
return Float(self) ** other
return Float(self) ** other2
end
elm[1] = elm[1].to_i
end