[New-bugs-announce] [issue6793] decimal.py: div_nearest ==> _div_nearest

Stefan Krah report at bugs.python.org
Fri Aug 28 11:59:54 CEST 2009


New submission from Stefan Krah <stefan-usenet at bytereef.org>:

--- a-decimal.py        2009-08-28 11:48:45.000000000 +0200
+++ b-decimal.py        2009-08-28 11:49:47.000000000 +0200
@@ -4845,7 +4845,7 @@
         log_tenpower = f*M # exact
     else:
         log_d = 0  # error < 2.31
-        log_tenpower = div_nearest(f, 10**-p) # error < 0.5
+        log_tenpower = _div_nearest(f, 10**-p) # error < 0.5
 
     return _div_nearest(log_tenpower+log_d, 100)

----------
components: Library (Lib)
messages: 92031
nosy: skrah
severity: normal
status: open
title: decimal.py: div_nearest ==> _div_nearest
versions: Python 2.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue6793>
_______________________________________


More information about the New-bugs-announce mailing list