You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
flags |= fcntl.FD_CLOEXEC
fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags)
What should it do? Why are we forcing close-on-exec on the descriptor of the socket?
Thanks and regards,
Jan
The text was updated successfully, but these errors were encountered:
Hello Josh,
In the SimpleJSONRPCServer is see this code:
What should it do? Why are we forcing close-on-exec on the descriptor of the socket?
Thanks and regards,
Jan
The text was updated successfully, but these errors were encountered: