summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-07-01 10:24:20 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-07-01 10:24:20 (GMT)
commitd57caf36bd4f261b5d1e7ba758001fe5b6416daf (patch)
tree4be56c812ffa6554409777c2220e30b9c54cd051 /Modules/_decimal
parent15bac0f4da14c9a6b74fbb9048726bbe266c2977 (diff)
downloadcpython-d57caf36bd4f261b5d1e7ba758001fe5b6416daf.zip
cpython-d57caf36bd4f261b5d1e7ba758001fe5b6416daf.tar.gz
cpython-d57caf36bd4f261b5d1e7ba758001fe5b6416daf.tar.bz2
Remove ISSUES.txt.
Diffstat (limited to 'Modules/_decimal')
-rw-r--r--Modules/_decimal/ISSUES.txt56
1 files changed, 0 insertions, 56 deletions
diff --git a/Modules/_decimal/ISSUES.txt b/Modules/_decimal/ISSUES.txt
deleted file mode 100644
index 7a545c2..0000000
--- a/Modules/_decimal/ISSUES.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-Normal priority:
-----------------
-
-1) Add C-API importable as capsule.
-
-2) Add --with-system-libmpdec to ./configure.
-
-3) Use same default emin/emax on 32-bit (MAX_EMAX=425000000) and 64-bit
- (MAX_EMAX=10**18-1).
-
-4) Order of arguments in Context().
-
-5) Documentation.
-
-6) quantize()
- - exp argument is misleading:
- Decimal('0.321000e+2').quantize(exp=9) -> user might expect
- that the result will have exp=9.
- - watchexp
-
-7) Match the exception hierarchy of decimal.py:
-
- exceptions.ArithmeticError(exceptions.Exception)
- DecimalException
- Clamped
- DivisionByZero(DecimalException, exceptions.ZeroDivisionError)
- Inexact
- Overflow(Inexact, Rounded)
- Underflow(Inexact, Rounded, Subnormal)
- InvalidOperation
- Rounded
- Subnormal
- FloatOperation
-
-
-Low priority:
--------------
-
-1) Convert tabs (wait until commit).
-
-2) Pre-ANSI compilers require '#' in the first column (should be done
- for the whole Python source tree if we support such compilers). (?)
-
-3) FETCH_CURRENT_CONTEXT vs. CURRENT_CONTEXT?
-
-4) Justify remaining uses of exit on overflow in bignum arith. Short
- answer: with correct context values the coefficients never get big
- enough for that to happen.
-
-5) Justify remaining uses of abort() in mpdecimal: These uses are
- for debug purposes and can't be reached when the library is used
- correctly.
-
-