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 @@ -662,6 +662,10 @@ def get_terminal_size(fd: int = ...) -> terminal_size: ...
662
662
def get_inheritable (__fd : int ) -> bool : ...
663
663
def set_inheritable (__fd : int , __inheritable : bool ) -> None : ...
664
664
665
+ if sys .platform == "win32" :
666
+ def get_handle_inheritable (__handle : int ) -> bool : ...
667
+ def set_handle_inheritable (__handle : int , __inheritable : bool ) -> None : ...
668
+
665
669
if sys .platform != "win32" :
666
670
# Unix only
667
671
def tcgetpgrp (__fd : int ) -> int : ...
Original file line number Diff line number Diff line change @@ -69,8 +69,6 @@ distutils.msvccompiler.MSVCCompiler.manifest_get_embed_info
69
69
distutils.msvccompiler.MSVCCompiler.manifest_setup_ldargs
70
70
distutils.msvccompiler.OldMSVCCompiler
71
71
msvcrt.SetErrorMode
72
- os.get_handle_inheritable
73
- os.set_handle_inheritable
74
72
socket.MsgFlag.MSG_BCAST
75
73
socket.MsgFlag.MSG_MCAST
76
74
ssl.SSLSocket.recvmsg
You can’t perform that action at this time.
0 commit comments