Add errno.ENOTCAPABLE (#14748)

This commit is contained in:
Sebastian Rittau
2025-09-19 19:54:51 +02:00
committed by GitHub
parent 15bc02e8e0
commit b158ccd3c1
4 changed files with 25 additions and 0 deletions
@@ -29,3 +29,11 @@ _msi
msilib(.[a-z]+)?
ossaudiodev
spwd
# ================
# Unclear problems
# ================
# Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
errno.ENOTCAPABLE
@@ -17,3 +17,11 @@ _msi
msilib(.[a-z]+)?
ossaudiodev
spwd
# ================
# Unclear problems
# ================
# Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
errno.ENOTCAPABLE
@@ -3,3 +3,11 @@
# =======
(mmap.MAP_32BIT)? # Exists locally on MacOS but not on GitHub
# ================
# Unclear problems
# ================
# Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
errno.ENOTCAPABLE
+1
View File
@@ -121,6 +121,7 @@ if sys.platform == "darwin":
ESHLIBVERS: Final[int]
if sys.version_info >= (3, 11):
EQFULL: Final[int]
ENOTCAPABLE: Final[int] # available starting with 3.11.1
if sys.platform != "darwin":
EDEADLOCK: Final[int]