We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bad030 commit 500792bCopy full SHA for 500792b
src/execnet/script/socketserver.py
@@ -80,7 +80,7 @@ def bind_and_listen(hostport: str | tuple[str, int], execmodel: ExecModel):
80
if hasattr(fcntl, "FD_CLOEXEC"):
81
old = fcntl.fcntl(serversock.fileno(), fcntl.F_GETFD)
82
fcntl.fcntl(serversock.fileno(), fcntl.F_SETFD, old | fcntl.FD_CLOEXEC)
83
- # allow the address to be re-used in a reasonable amount of time
+ # allow the address to be reused in a reasonable amount of time
84
if os.name == "posix" and sys.platform != "cygwin":
85
serversock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
86
0 commit comments