From ccb7eb0659ce75b53f6233f4e78eb4d0ea93acab Mon Sep 17 00:00:00 2001 From: yugui Date: Tue, 10 Nov 2009 17:11:36 +0000 Subject: merges r24969 from trunk into ruby_1_9_1, and adds a test for the fix. -- * lib/matrix.rb (Matrix#rank): Two bug fixes. One made Matrix[[0,0],[0,0],[1,0]].rank raise a NoMethodError while the other one had Matrix[[0,1],[0,0],[1,0]].rank raise a TypeError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@25708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1349cf2d4..6060ee554 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Sep 17 06:03:40 2009 Marc-Andre Lafortune + + * lib/matrix.rb (Matrix#rank): Two bug fixes. One made + Matrix[[0,0],[0,0],[1,0]].rank raise a NoMethodError while the other + one had Matrix[[0,1],[0,0],[1,0]].rank raise a TypeError. + Wed Sep 16 17:20:49 2009 Marc-Andre Lafortune * lib/matrix.rb (Matrix#/): Fix obvious bug -- cgit