Skip to content

Commit fdccaf0

Browse files
committed
ENOTCAPABLE was available starting with 3.11.1
1 parent 74494a5 commit fdccaf0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stdlib/errno.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ if sys.platform == "darwin":
121121
ESHLIBVERS: Final[int]
122122
if sys.version_info >= (3, 11):
123123
EQFULL: Final[int]
124-
if sys.version_info >= (3, 14):
125-
ENOTCAPABLE: Final[int]
124+
ENOTCAPABLE: Final[int] # available starting with 3.11.1
126125

127126
if sys.platform != "darwin":
128127
EDEADLOCK: Final[int]

0 commit comments

Comments
 (0)