File tree Expand file tree Collapse file tree 4 files changed +25
-0
lines changed
@tests/stubtest_allowlists Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 29
29
msilib(.[a-z]+)?
30
30
ossaudiodev
31
31
spwd
32
+
33
+
34
+ # ================
35
+ # Unclear problems
36
+ # ================
37
+
38
+ # Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
39
+ errno.ENOTCAPABLE
Original file line number Diff line number Diff line change 17
17
msilib(.[a-z]+)?
18
18
ossaudiodev
19
19
spwd
20
+
21
+
22
+ # ================
23
+ # Unclear problems
24
+ # ================
25
+
26
+ # Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
27
+ errno.ENOTCAPABLE
Original file line number Diff line number Diff line change 3
3
# =======
4
4
5
5
(mmap.MAP_32BIT)? # Exists locally on MacOS but not on GitHub
6
+
7
+
8
+ # ================
9
+ # Unclear problems
10
+ # ================
11
+
12
+ # Added in 3.11.1, flagged by stubtest on Python < 3.14 for unknown reasons
13
+ errno.ENOTCAPABLE
Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ if sys.platform == "darwin":
121
121
ESHLIBVERS : Final [int ]
122
122
if sys .version_info >= (3 , 11 ):
123
123
EQFULL : Final [int ]
124
+ ENOTCAPABLE : Final [int ] # available starting with 3.11.1
124
125
125
126
if sys .platform != "darwin" :
126
127
EDEADLOCK : Final [int ]
You can’t perform that action at this time.
0 commit comments