Commit 55c83de1 authored by Mark Dickinson's avatar Mark Dickinson

Corrections to decimal flying circus: round returns a Decimal;

float should have a short repr.
parent 5cd261d4
......@@ -187,9 +187,9 @@ floating point flying circus:
>>> str(a)
'1.34'
>>> float(a)
1.3400000000000001
>>> round(a, 1) # round() first converts to binary floating point
1.3
1.34
>>> round(a, 1)
Decimal('1.3')
>>> int(a)
1
>>> a * 5
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment