From 210af9bf295d0f8e1b96737b5cb69c4dda2e2afb Mon Sep 17 00:00:00 2001 From: tadf Date: Wed, 17 Jun 2009 12:55:16 +0000 Subject: * bignum.c (rb_big_fdiv): checks whether the given second argument can be converted to float properly. * numeric.c (fix_fdiv): calls rb_big_fdiv when the given second argument is a bignum. * rational.c (nurat_fdiv): should calculate Float(x/y), not Float(x)/Float(y). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index b7a3fd613..12c72352c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Wed Jun 17 21:25:54 2009 Tadayoshi Funaba + + * bignum.c (rb_big_fdiv): checks whether the given second argument + can be converted to float properly. + + * numeric.c (fix_fdiv): calls rb_big_fdiv when the given second + argument is a bignum. + + * rational.c (nurat_fdiv): should calculate Float(x/y), not + Float(x)/Float(y). + Wed Jun 17 16:57:40 2009 Yukihiro Matsumoto * load.c (rb_f_require): RDoc updated. a patch from Run Paint Run -- cgit