Files
mruby-mruby/src
KOBAYASHI Shuji 8bd1bc47b3 Always add trailing .0 in Float#inspect; ref #4225
Trailing `.0` is removed from `Float#to_s` and `Float#inspect` at
9d08025b. However, I think the more human-readable format is better
for `Float#inspect`.

For example, in the `Float#to_s` format, the failure message is not
well understood when testing values including types by `eql?` (e.g.
`Numeric#step` test).

  ```ruby
  assert "example" do
    exp = 1.0
    act = 1
    assert_operator(exp, :eql?, act)  #=> Expected 1 to be eql? 1.
  end
  ```
2020-10-12 16:21:45 +09:00
..
2020-10-12 16:21:03 +09:00
2020-10-12 16:21:03 +09:00
2019-09-16 11:58:35 +09:00
2020-10-12 16:21:40 +09:00
2020-10-12 16:21:44 +09:00
2020-10-12 16:20:41 +09:00
2020-10-12 16:21:10 +09:00
2016-05-09 17:19:47 +02:00
2020-10-12 16:21:43 +09:00