Comment #2 on issue 3876 by [email protected]: SqNumberParserTest>>testFloatGradualUnderflow has an odd condition
http://code.google.com/p/pharo/issues/detail?id=3876
More exactly, ifFalse:ifTrue:
float := self areLowercaseDigitsAllowed
ifFalse: [SqNumberParser parse: '16r2.D2593D58B4FC4e-256']
ifTrue: [trueFraction asFloat].
because if lower case digits are allowed, then 16r2.D2593D58B4FC4e-256 is
same as 16r2.D2593D58B4FC4E - 256
