summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-12-02 14:42:02 (GMT)
committerGitHub <noreply@github.com>2024-12-02 14:42:02 (GMT)
commitf41d8d89e79d634895868656f50a0e16e339f9d6 (patch)
treeaa7279efd3f40e877c54fb2bf9099082ccdb1c87 /Python/pythonrun.c
parent511c588f5d5b9f8eb0e836652ca3ecf86518401e (diff)
downloadcpython-f41d8d89e79d634895868656f50a0e16e339f9d6.zip
cpython-f41d8d89e79d634895868656f50a0e16e339f9d6.tar.gz
cpython-f41d8d89e79d634895868656f50a0e16e339f9d6.tar.bz2
[3.13] gh-113841: fix possible undefined division by 0 in _Py_c_pow() (GH-127211) (#127216)
Note, that transformed expression is not an equivalent for original one (1/exp(-x) != exp(x) in general for floating-point numbers). Though, the difference seems to be ~1ULP for good libm implementations. It's more interesting why division was used from beginning. Closest algorithm I've found (no error checks, of course;)) - it's Algorithm 190 from ACM: https://dl.acm.org/doi/10.1145/366663.366679. It uses subtraction in the exponent. (cherry picked from commit f7bb658124aba74be4c13f498bf46cfded710ef9) Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Diffstat (limited to 'Python/pythonrun.c')
0 files changed, 0 insertions, 0 deletions