Skip to content

Commit 500792b

Browse files
committed
Fix typo: reused
1 parent 8bad030 commit 500792b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execnet/script/socketserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def bind_and_listen(hostport: str | tuple[str, int], execmodel: ExecModel):
8080
if hasattr(fcntl, "FD_CLOEXEC"):
8181
old = fcntl.fcntl(serversock.fileno(), fcntl.F_GETFD)
8282
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
83+
# allow the address to be reused in a reasonable amount of time
8484
if os.name == "posix" and sys.platform != "cygwin":
8585
serversock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
8686

0 commit comments

Comments
 (0)