@@ -517,8 +517,8 @@ Sometimes you can see this inaccuracy when the number is printed::
517517 >>> 1.1
518518 1.1000000000000001
519519
520- The inaccuracy isn't always visible when you print the number because the FP-to-
521- decimal-string conversion is provided by the C library, and most C libraries try
520+ The inaccuracy isn't always visible when you print the number because the
521+ FP-to- decimal-string conversion is provided by the C library, and most C libraries try
522522to produce sensible output. Even if it's not displayed, however, the inaccuracy
523523is still there and subsequent operations can magnify the error.
524524
@@ -595,8 +595,8 @@ exponent::
595595 ...
596596 decimal.InvalidOperation: x ** (non-integer)
597597
598- You can combine :class: `Decimal ` instances with integers, but not with floating-
599- point numbers::
598+ You can combine :class: `Decimal ` instances with integers, but not with
599+ floating- point numbers::
600600
601601 >>> a + 4
602602 Decimal("39.72")
@@ -684,8 +684,8 @@ includes a quick-start tutorial and a reference.
684684 Raymond Hettinger, Aahz, and Tim Peters.
685685
686686 http://www.lahey.com/float.htm
687- The article uses Fortran code to illustrate many of the problems that floating-
688- point inaccuracy can cause.
687+ The article uses Fortran code to illustrate many of the problems that
688+ floating- point inaccuracy can cause.
689689
690690 http://speleotrove.com/decimal/
691691 A description of a decimal-based representation. This representation is being
@@ -741,8 +741,8 @@ functions in Python's implementation required that the numeric locale remain set
741741to the ``'C' `` locale. Often this was because the code was using the C
742742library's :c:func: `atof ` function.
743743
744- Not setting the numeric locale caused trouble for extensions that used third-
745- party C libraries, however, because they wouldn't have the correct locale set.
744+ Not setting the numeric locale caused trouble for extensions that used third-party
745+ C libraries, however, because they wouldn't have the correct locale set.
746746The motivating example was GTK+, whose user interface widgets weren't displaying
747747numbers in the current locale.
748748
@@ -918,8 +918,8 @@ Here are all of the changes that Python 2.4 makes to the core Python language.
918918
919919 (Contributed by Raymond Hettinger.)
920920
921- * Encountering a failure while importing a module no longer leaves a partially-
922- initialized module object in ``sys.modules ``. The incomplete module object left
921+ * Encountering a failure while importing a module no longer leaves a partially-initialized
922+ module object in ``sys.modules ``. The incomplete module object left
923923 behind would fool further imports of the same module into succeeding, leading to
924924 confusing errors. (Fixed by Tim Peters.)
925925
@@ -1028,8 +1028,8 @@ complete list of changes, or look through the CVS logs for all the details.
10281028 previous ones left off. (Implemented by Walter Dörwald.)
10291029
10301030* There is a new :mod: `collections ` module for various specialized collection
1031- datatypes. Currently it contains just one type, :class: `deque `, a double-
1032- ended queue that supports efficiently adding and removing elements from either
1031+ datatypes. Currently it contains just one type, :class: `deque `, a double-ended
1032+ queue that supports efficiently adding and removing elements from either
10331033 end::
10341034
10351035 >>> from collections import deque
@@ -1485,8 +1485,8 @@ Some of the changes to Python's build process and to the C API are:
14851485 intended as an aid to people developing the Python core. Providing
14861486 :option: `!--enable-profiling ` to the :program: `configure ` script will let you
14871487 profile the interpreter with :program: `gprof `, and providing the
1488- :option: `!--with-tsc ` switch enables profiling using the Pentium's Time-Stamp-
1489- Counter register. Note that the :option: `!--with-tsc ` switch is slightly
1488+ :option: `!--with-tsc ` switch enables profiling using the Pentium's
1489+ Time-Stamp- Counter register. Note that the :option: `!--with-tsc ` switch is slightly
14901490 misnamed, because the profiling feature also works on the PowerPC platform,
14911491 though that processor architecture doesn't call that register "the TSC
14921492 register". (Contributed by Jeremy Hylton.)
@@ -1540,8 +1540,8 @@ code:
15401540
15411541* The :mod: `tarfile ` module now generates GNU-format tar files by default.
15421542
1543- * Encountering a failure while importing a module no longer leaves a partially-
1544- initialized module object in ``sys.modules ``.
1543+ * Encountering a failure while importing a module no longer leaves a
1544+ partially- initialized module object in ``sys.modules ``.
15451545
15461546* :const: `None ` is now a constant; code that binds a new value to the name
15471547 ``None `` is now a syntax error.
0 commit comments