mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (GH-20655) (#20660)
(cherry picked from commit 5fe1df1886
)
Authored-by: Stefan Krah <skrah@bytereef.org>
This commit is contained in:
parent
83bff88b4b
commit
cdc3d9cb22
1 changed files with 2 additions and 0 deletions
|
@ -5201,6 +5201,7 @@ class CWhitebox(unittest.TestCase):
|
|||
DefaultContext = C.DefaultContext
|
||||
|
||||
InvalidOperation = C.InvalidOperation
|
||||
FloatOperation = C.FloatOperation
|
||||
DivisionByZero = C.DivisionByZero
|
||||
Overflow = C.Overflow
|
||||
Subnormal = C.Subnormal
|
||||
|
@ -5274,6 +5275,7 @@ class CWhitebox(unittest.TestCase):
|
|||
Underflow: C.DecUnderflow,
|
||||
Overflow: C.DecOverflow,
|
||||
DivisionByZero: C.DecDivisionByZero,
|
||||
FloatOperation: C.DecFloatOperation,
|
||||
InvalidOperation: C.DecIEEEInvalidOperation
|
||||
}
|
||||
IntCond = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue