File tree 2 files changed +8
-7
lines changed
tests/stubtest_allowlists 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -91,9 +91,15 @@ ECANCELED: int # undocumented
91
91
ENOTRECOVERABLE : int # undocumented
92
92
EOWNERDEAD : int # undocumented
93
93
94
+ if sys .platform == "sunos5" or sys .platform == "solaris" : # noqa: Y008
95
+ ELOCKUNMAPPED : int
96
+ ENOTACTIVE : int
97
+
94
98
if sys .platform != "win32" :
95
99
ENOTBLK : int
96
100
EMULTIHOP : int
101
+
102
+ if sys .platform == "darwin" :
97
103
# All of the below are undocumented
98
104
EAUTH : int
99
105
EBADARCH : int
@@ -112,9 +118,8 @@ if sys.platform != "win32":
112
118
EPWROFF : int
113
119
ERPCMISMATCH : int
114
120
ESHLIBVERS : int
115
-
116
- if sys .platform != "darwin" or sys .version_info >= (3 , 11 ):
117
- EQFULL : int # undocumented
121
+ if sys .version_info >= (3 , 11 ):
122
+ EQFULL : int
118
123
119
124
if sys .platform != "darwin" :
120
125
EDEADLOCK : int
@@ -164,9 +169,6 @@ if sys.platform != "win32" and sys.platform != "darwin":
164
169
ENOKEY : int
165
170
ENOMEDIUM : int
166
171
ERFKILL : int
167
- EL : int
168
- ELOCKUNMAPPED : int
169
- ENOTACTIVE : int
170
172
171
173
if sys .platform == "win32" :
172
174
# All of these are undocumented
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ selectors.KqueueSelector
12
12
signal.SIGEMT
13
13
signal.SIGINFO
14
14
socket.[A-Z0-9_]+
15
- errno.[A-Z0-9]+
16
15
17
16
# Exists at runtime, but missing from stubs
18
17
mimetypes.MimeTypes.read_windows_registry
You can’t perform that action at this time.
0 commit comments