Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions stdlib/@tests/stubtest_allowlists/darwin-py311.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions stdlib/@tests/stubtest_allowlists/darwin-py312.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions stdlib/@tests/stubtest_allowlists/darwin-py313.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 1 addition & 0 deletions stdlib/errno.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading