Project

General

Profile

ActionsLike0

Bug #8299

closed

Minor error in float parsing

Added by bobjalex (Bob Alexander) almost 12 years ago. Updated over 1 year ago.

Status:
Closed
Target version:
-
ruby -v:
trunk
Backport:
[ruby-core:54473]
Tags:

Description

I encountered a float that either parses [slightly] differently (or converts to string differently) in Ruby than it does in Python or Java. This looks like a Ruby bug since the result "looks" incorrect.

It is easily reproduced by entering the magic number (-1.1505945E-5) into irb. It behaves the same in 2.0 and 1.9. I'm using Windows.

Below is an irb session that demonstrates. Also included are JRuby and Python trials that show better behavior.

This issue is not causing me any problems, but just in case someone there is interested in looking into it...

Bob

ruby -v
ruby 2.0.0p0 (2013-02-24) [i386-mingw32]

irb
irb(main):001:0> RUBY_VERSION
=> "2.0.0"
irb(main):002:0> -1.1505945E-5
=> -1.1505945000000001e-05

ruby19 -v
ruby 1.9.3p392 (2013-02-22) [i386-mingw32]

irb19
irb(main):001:0> RUBY_VERSION
=> "1.9.3"
irb(main):002:0> -1.1505945E-5
=> -1.1505945000000001e-05
irb(main):002:0>

jirb
irb(main):001:0> -1.1505945E-5
=> -1.1505945e-05

python
Python 2.7.4rc1 (default, Mar 24 2013, 14:34:32) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.

-1.1505945E-5
-1.1505945e-05
repr(-1.1505945E-5)
'-1.1505945e-05'


Related issues 1 (0 open1 closed)

Related to Ruby - Bug #8358: TestSprintf#test_float test failureClosedluislavena (Luis Lavena)05/02/2013Actions

Updated by nobu (Nobuyoshi Nakada) almost 12 years ago

  • Status changed from Open to Rejected

Updated by marcandre (Marc-Andre Lafortune) almost 12 years ago

  • Status changed from Rejected to Open
  • Priority changed from 3 to Normal

Updated by naruse (Yui NARUSE) almost 12 years ago

  • Status changed from Open to Rejected
#6

Updated by nagachika (Tomoyuki Chikanaga) almost 12 years ago

  • Tracker changed from Backport to Bug
  • Project changed from 15 to Ruby

Updated by marcandre (Marc-Andre Lafortune) almost 12 years ago

  • Status changed from Rejected to Open
  • ruby -v set to trunk

Updated by naruse (Yui NARUSE) almost 12 years ago

  • Category set to platform/mingw
  • Status changed from Open to Assigned
  • Assignee set to nobu (Nobuyoshi Nakada)

Updated by naruse (Yui NARUSE) over 1 year ago

  • Status changed from Assigned to Closed
ActionsLike0

Also available in: Atom PDF