Get rid of the remaining versionadded/versionchanged directives.

This commit is contained in:
Georg Brandl 2007-09-01 13:51:09 +00:00
parent 1617457cff
commit 55ac8f0f26
161 changed files with 335 additions and 2197 deletions

View file

@ -5,19 +5,14 @@
.. module:: decimal
:synopsis: Implementation of the General Decimal Arithmetic Specification.
.. moduleauthor:: Eric Price <eprice at tjhsst.edu>
.. moduleauthor:: Facundo Batista <facundo at taniquetil.com.ar>
.. moduleauthor:: Raymond Hettinger <python at rcn.com>
.. moduleauthor:: Aahz <aahz at pobox.com>
.. moduleauthor:: Tim Peters <tim.one at comcast.net>
.. sectionauthor:: Raymond D. Hettinger <python at rcn.com>
.. versionadded:: 2.4
The :mod:`decimal` module provides support for decimal floating point
arithmetic. It offers several advantages over the :class:`float()` datatype:
@ -436,8 +431,6 @@ the :func:`localcontext` function to temporarily change the active context.
when exiting the with-statement. If no context is specified, a copy of the
current context is used.
.. versionadded:: 2.5
For example, the following code sets the current decimal precision to 42 places,
performs a calculation, and then automatically restores the previous context::