mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (#20655)
This commit is contained in:
parent
fef1fae9df
commit
5fe1df1886
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