diff options
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 83cca99..d37c5ac 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -616,9 +616,9 @@ that will be the numerator and denominator of the resulting fraction. :: >>> float(a), float(b) (0.66666666666666663, 0.40000000000000002) >>> a+b - Fraction(16,15) + Fraction(16, 15) >>> a/b - Fraction(5,3) + Fraction(5, 3) The :mod:`fractions` module is based upon an implementation by Sjoerd Mullender that was in Python's :file:`Demo/classes/` directory for a |