Updates for Python 3.13.10 and 3.14.1 (#15105)

Closes #15104
This commit is contained in:
Sebastian Rittau
2025-12-04 20:19:06 +01:00
committed by GitHub
parent 5e3a96dcaa
commit e56ae65a49
27 changed files with 170 additions and 75 deletions
+2 -1
View File
@@ -174,7 +174,8 @@ __all__ = [
"write",
]
if sys.version_info >= (3, 14):
__all__ += ["readinto"]
# reload_environ was added to __all__ in Python 3.14.1
__all__ += ["readinto", "reload_environ"]
if sys.platform == "darwin" and sys.version_info >= (3, 12):
__all__ += ["PRIO_DARWIN_BG", "PRIO_DARWIN_NONUI", "PRIO_DARWIN_PROCESS", "PRIO_DARWIN_THREAD"]
if sys.platform == "darwin" and sys.version_info >= (3, 10):