File tree 2 files changed +4
-2
lines changed
tests/stubtest_allowlists
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -660,6 +660,10 @@ def get_terminal_size(fd: int = ...) -> terminal_size: ...
660
660
def get_inheritable (__fd : int ) -> bool : ...
661
661
def set_inheritable (__fd : int , __inheritable : bool ) -> None : ...
662
662
663
+ if sys .platform == "win32" :
664
+ def get_handle_inheritable (__handle : int ) -> bool : ...
665
+ def set_handle_inheritable (__handle : int , __inheritable : bool ) -> None : ...
666
+
663
667
if sys .platform != "win32" :
664
668
# Unix only
665
669
def tcgetpgrp (__fd : int ) -> int : ...
Original file line number Diff line number Diff line change @@ -70,8 +70,6 @@ distutils.msvccompiler.MSVCCompiler.manifest_get_embed_info
70
70
distutils.msvccompiler.MSVCCompiler.manifest_setup_ldargs
71
71
distutils.msvccompiler.OldMSVCCompiler
72
72
msvcrt.SetErrorMode
73
- os.get_handle_inheritable
74
- os.set_handle_inheritable
75
73
socket.MsgFlag.MSG_BCAST
76
74
socket.MsgFlag.MSG_MCAST
77
75
ssl.SSLSocket.recvmsg
You can’t perform that action at this time.
0 commit comments