File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
tests/stubtest_allowlists Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ if sys.platform != "win32":
20
20
F_SETOWN : int
21
21
F_UNLCK : int
22
22
F_WRLCK : int
23
+
24
+ F_GETLEASE : int
25
+ F_SETLEASE : int
23
26
if sys .platform == "darwin" :
24
27
F_FULLFSYNC : int
25
28
F_NOCACHE : int
@@ -30,11 +33,9 @@ if sys.platform != "win32":
30
33
F_SETSIG : int
31
34
F_SHLCK : int
32
35
F_SETLK64 : int
33
- F_SETLEASE : int
34
36
F_GETSIG : int
35
37
F_NOTIFY : int
36
38
F_EXLCK : int
37
- F_GETLEASE : int
38
39
F_GETLK64 : int
39
40
if sys .version_info >= (3 , 8 ):
40
41
F_ADD_SEALS : int
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ socket.TCP_CONNECTION_INFO
7
7
(dbm.gnu)?
8
8
(locale.bind_textdomain_codeset)?
9
9
(locale.bindtextdomain)?
10
- (locale.dcgettext)
10
+ (locale.dcgettext)?
11
11
(locale.dgettext)?
12
12
(locale.gettext)?
13
13
(locale.textdomain)?
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ xxlimited.Xxo.x_exports
43
43
(dbm.gnu)?
44
44
(locale.bind_textdomain_codeset)?
45
45
(locale.bindtextdomain)?
46
- (locale.dcgettext)
46
+ (locale.dcgettext)?
47
47
(locale.dgettext)?
48
48
(locale.gettext)?
49
49
(locale.textdomain)?
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ os.SF_NODISKIO
7
7
os.SF_SYNC
8
8
(os|posix).sched_param # system dependent. Unclear if macos has it.
9
9
posix.EX_NOTFOUND
10
- readline.append_history_file # not defined in macos
11
10
select.KQ_FILTER_NETDEV # system dependent
12
11
select.kqueue.__init__ # default C signature is wrong
13
12
select.POLLMSG # system dependent
@@ -20,6 +19,9 @@ select.POLLMSG # system dependent
20
19
(os.pwritev)?
21
20
(posix.preadv)?
22
21
(posix.pwritev)?
22
+ (readline.append_history_file)?
23
+ (fcntl.F_GETLEASE)?
24
+ (fcntl.F_SETLEASE)?
23
25
24
26
# Platform differences that cannot be captured by the type system
25
27
(posix.O_[A-Z_]+)?
You can’t perform that action at this time.
0 commit comments