diff options
author | Facundo Batista <facundobatista@gmail.com> | 2009-02-16 15:41:37 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2009-02-16 15:41:37 (GMT) |
commit | 6ab247942c794d17b087b195a0d42305d64b1718 (patch) | |
tree | 223609182c7af8e8881269f01a3dbecb2ef7daa2 /Lib | |
parent | db9ac1d4be0ef83dbbc3f9680609836ca1efd50a (diff) | |
download | cpython-6ab247942c794d17b087b195a0d42305d64b1718.zip cpython-6ab247942c794d17b087b195a0d42305d64b1718.tar.gz cpython-6ab247942c794d17b087b195a0d42305d64b1718.tar.bz2 |
Removed message about compatibility with 2.3.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/decimal.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index c46037e..4b2f3f5 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -7,18 +7,14 @@ # and Aahz <aahz at pobox.com> # and Tim Peters -# This module is currently Py2.3 compatible and should be kept that way -# unless a major compelling advantage arises. IOW, 2.3 compatibility is -# strongly preferred, but not guaranteed. - -# Also, this module should be kept in sync with the latest updates of -# the IBM specification as it evolves. Those updates will be treated +# This module should be kept in sync with the latest updates of the +# IBM specification as it evolves. Those updates will be treated # as bug fixes (deviation from the spec is a compatibility, usability # bug) and will be backported. At this point the spec is stabilizing # and the updates are becoming fewer, smaller, and less significant. """ -This is a Py2.3 implementation of decimal floating point arithmetic based on +This is an implementation of decimal floating point arithmetic based on the General Decimal Arithmetic Specification: www2.hursley.ibm.com/decimal/decarith.html |