aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-04 07:37:10 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-04 07:37:10 +0000
commit2c2cf71b048e42950d5d5f79fe78bc9fea0df158 (patch)
tree55d50b0856f96e2a2db8d68d8555403078531a61 /ChangeLog
parent4cec4edd0bf2361a1769d108c910c4710e3c290b (diff)
downloadruby-2c2cf71b048e42950d5d5f79fe78bc9fea0df158.tar.gz
* time.c (num_exact): should not accept strings as operands, even
though they respond to #to_r. ideally, strict rational conversion should be done by a method like #to_rational, not #to_r. [ruby-core:23729] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 096a8893a4..694139070a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,13 @@ Fri Dec 4 15:50:18 2009 Shugo Maeda <shugo@ruby-lang.org>
* vm_eval.c (yield_under): does not yield self, and passes blockptr
instead of &block to vm_cref_push(). [ruby-dev:39833]
+Fri Dec 4 15:15:43 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * time.c (num_exact): should not accept strings as operands, even
+ though they respond to #to_r. ideally, strict rational
+ conversion should be done by a method like #to_rational, not #to_r.
+ [ruby-core:23729]
+
Fri Dec 4 13:10:23 2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* ext/stringio/stringio.c (ungetc): RDoc updated. trunk allows