mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* numeric.c (fix_to_s): removed workaround for radix 2. Historically,
rb_fix2str can only handle radix 8, 10, 16. (Rev1.37) But for now, it can handle radix 2..36. [ruby-Bugs#3438] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2a1c0b357e
commit
dbf7e59c68
2 changed files with 6 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
Sun Feb 5 21:05:34 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* numeric.c (fix_to_s): removed workaround for radix 2. Historically,
|
||||
rb_fix2str can only handle radix 8, 10, 16. (Rev1.37) But for now,
|
||||
it can handle radix 2..36. [ruby-Bugs#3438]
|
||||
|
||||
Sun Feb 5 18:55:08 2006 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/http.rb: imported from trunk, rev 1.129
|
||||
|
|
|
@ -1951,10 +1951,6 @@ fix_to_s(argc, argv, x)
|
|||
if (argc == 0) base = 10;
|
||||
else base = NUM2INT(b);
|
||||
|
||||
if (base == 2) {
|
||||
/* rb_fix2str() does not handle binary */
|
||||
return rb_big2str(rb_int2big(FIX2LONG(x)), 2);
|
||||
}
|
||||
return rb_fix2str(x, base);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue