Bump decimal to 3.14 (#14017)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Semyon Moroz
2025-05-11 22:23:21 -07:00
committed by GitHub
co-authored by Jelle Zijlstra
parent 30b7b679f5
commit d01b052dad
4 changed files with 17 additions and 5 deletions
+4
View File
@@ -1,5 +1,6 @@
# This is a slight lie, the implementations aren't exactly identical
# However, in all likelihood, the differences are inconsequential
import sys
from _decimal import *
__all__ = [
@@ -41,3 +42,6 @@ __all__ = [
"HAVE_THREADS",
"HAVE_CONTEXTVAR",
]
if sys.version_info >= (3, 14):
__all__ += ["IEEEContext", "IEEE_CONTEXT_MAX_BITS"]