diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/decimal.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 1d17109..498c2cc 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -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:: |