Update repl_server.py

This commit is contained in:
Shunsuke Shibayama 2022-08-28 11:04:45 +09:00
parent 9210188b71
commit 3036637e48

View file

@ -7,7 +7,7 @@ import io as __io
__server_socket = __socket.socket()
# DummyVM will replace this __PORT__ with free port
__server_socket.bind(('127.0.0.1', __PORT__))
__server_socket.bind(('127.0.0.1', __PORT__))
__server_socket.listen(1)
(__client_socket, __client_address) = __server_socket.accept()