diff -r 422a0175bbf5 Doc/library/colorsys.rst --- a/Doc/library/colorsys.rst Fri Oct 19 23:59:35 2012 +1000 +++ b/Doc/library/colorsys.rst Sun Oct 21 14:06:53 2012 -0500 @@ -61,4 +61,4 @@ >>> colorsys.rgb_to_hsv(.3, .4, .2) (0.25, 0.5, 0.4) >>> colorsys.hsv_to_rgb(0.25, 0.5, 0.4) - (0.3, 0.4, 0.2) + (0.30000000000000004, 0.4, 0.2) diff -r 422a0175bbf5 Doc/library/filecmp.rst --- a/Doc/library/filecmp.rst Fri Oct 19 23:59:35 2012 +1000 +++ b/Doc/library/filecmp.rst Sun Oct 21 14:06:53 2012 -0500 @@ -54,9 +54,9 @@ Example:: >>> import filecmp - >>> filecmp.cmp('undoc.rst', 'undoc.rst') + >>> filecmp.cmp('undoc.rst', 'undoc.rst') # doctest: +SKIP True - >>> filecmp.cmp('undoc.rst', 'index.rst') + >>> filecmp.cmp('undoc.rst', 'index.rst') # doctest: +SKIP False @@ -190,6 +190,6 @@ ... for sub_dcmp in dcmp.subdirs.values(): ... print_diff_files(sub_dcmp) ... - >>> dcmp = dircmp('dir1', 'dir2') - >>> print_diff_files(dcmp) + >>> dcmp = dircmp('dir1', 'dir2') # doctest: +SKIP + >>> print_diff_files(dcmp) # doctest: +SKIP diff -r 422a0175bbf5 Doc/library/fractions.rst --- a/Doc/library/fractions.rst Fri Oct 19 23:59:35 2012 +1000 +++ b/Doc/library/fractions.rst Sun Oct 21 14:06:53 2012 -0500 @@ -57,7 +57,6 @@ Fraction(0, 1) >>> Fraction('3/7') Fraction(3, 7) - [40794 refs] >>> Fraction(' -3/7 ') Fraction(-3, 7) >>> Fraction('1.414213 \t\n') diff -r 422a0175bbf5 Doc/library/math.rst --- a/Doc/library/math.rst Fri Oct 19 23:59:35 2012 +1000 +++ b/Doc/library/math.rst Sun Oct 21 14:06:53 2012 -0500 @@ -82,6 +82,8 @@ .. function:: fsum(iterable) +.. testsetup:: + >>> from math import fsum Return an accurate floating point sum of values in the iterable. Avoids loss of precision by tracking multiple intermediate partial sums:: diff -r 422a0175bbf5 Doc/library/string.rst --- a/Doc/library/string.rst Fri Oct 19 23:59:35 2012 +1000 +++ b/Doc/library/string.rst Sun Oct 21 14:06:53 2012 -0500 @@ -717,7 +717,7 @@ >>> Template('Give $who $100').substitute(d) Traceback (most recent call last): [...] - ValueError: Invalid placeholder in string: line 1, col 10 + ValueError: Invalid placeholder in string: line 1, col 11 >>> Template('$who likes $what').substitute(d) Traceback (most recent call last): [...] diff -r 422a0175bbf5 Misc/ACKS --- a/Misc/ACKS Fri Oct 19 23:59:35 2012 +1000 +++ b/Misc/ACKS Sun Oct 21 14:06:53 2012 -0500 @@ -905,6 +905,7 @@ Ionel Simionescu Kirill Simonov Nathan Paul Simons +Ravi Sinha Janne Sinkkonen Ng Pheng Siong George Sipe