File tree 2 files changed +7
-10
lines changed
@tests/stubtest_allowlists 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,3 @@ posixpath.splitroot
24
24
readline.backend
25
25
stat.SF_SUPPORTED
26
26
stat.SF_SYNTHETIC
27
- syslog.LOG_INSTALL
28
- syslog.LOG_LAUNCHD
29
- syslog.LOG_NETINFO
30
- syslog.LOG_RAS
31
- syslog.LOG_REMOTEAUTH
Original file line number Diff line number Diff line change @@ -38,11 +38,13 @@ if sys.platform != "win32":
38
38
39
39
if sys .version_info >= (3 , 13 ):
40
40
LOG_FTP : Final = 88
41
- LOG_INSTALL : Final = 112
42
- LOG_LAUNCHD : Final = 192
43
- LOG_NETINFO : Final = 96
44
- LOG_RAS : Final = 120
45
- LOG_REMOTEAUTH : Final = 104
41
+
42
+ if sys .platform == "darwin" :
43
+ LOG_INSTALL : Final = 112
44
+ LOG_LAUNCHD : Final = 192
45
+ LOG_NETINFO : Final = 96
46
+ LOG_RAS : Final = 120
47
+ LOG_REMOTEAUTH : Final = 104
46
48
47
49
def LOG_MASK (pri : int , / ) -> int : ...
48
50
def LOG_UPTO (pri : int , / ) -> int : ...
You can’t perform that action at this time.
0 commit comments