From 350211450714f6cbf7482e59253f851cf80a5538 Mon Sep 17 00:00:00 2001 From: tadf Date: Sun, 25 Apr 2010 06:52:24 +0000 Subject: * complex.c, ratioanl.c: reverted experimental r24565. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- complex.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'complex.c') diff --git a/complex.c b/complex.c index 64ea345862..dc9e506022 100644 --- a/complex.c +++ b/complex.c @@ -1333,20 +1333,6 @@ nucomp_to_r(VALUE self) return f_to_r(dat->real); } -/* - * call-seq: - * cmp.rationalize([eps]) -> rational - * - * Returns the value as a rational if possible. An optional argument - * eps is always ignored. - */ -static VALUE -nucomp_rationalize(int argc, VALUE *argv, VALUE self) -{ - rb_scan_args(argc, argv, "01", NULL); - return nucomp_to_r(self); -} - /* * call-seq: * nil.to_c -> (0+0i) @@ -1937,7 +1923,6 @@ Init_Complex(void) rb_define_method(rb_cComplex, "to_i", nucomp_to_i, 0); rb_define_method(rb_cComplex, "to_f", nucomp_to_f, 0); rb_define_method(rb_cComplex, "to_r", nucomp_to_r, 0); - rb_define_method(rb_cComplex, "rationalize", nucomp_rationalize, -1); rb_define_method(rb_cNilClass, "to_c", nilclass_to_c, 0); rb_define_method(rb_cNumeric, "to_c", numeric_to_c, 0); -- cgit v1.2.3