Skip to content

Commit a5ad451

Browse files
committed
Remove stupid TODOs
1 parent 2328254 commit a5ad451

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

unpythonic/net/server.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,6 @@ def start(locals, addrspec=("127.0.0.1", 1337), banner=None):
386386
# TODO: support IPv6
387387
addr, port = addrspec
388388

389-
# TODO: support multiple instances in the same process (use a dictionary to store instance data)
390389
global _server_instance, _console_locals_namespace
391390
if _server_instance is not None:
392391
raise RuntimeError("The current process already has a running REPL server.")
@@ -395,7 +394,6 @@ def start(locals, addrspec=("127.0.0.1", 1337), banner=None):
395394

396395
global _banner
397396
if banner is None:
398-
# TODO: get name of module whose globals the session can update
399397
default_msg = ("Unpythonic REPL server at {addr}:{port}, on behalf of:\n"
400398
" {argv}\n"
401399
" Top-level assignments and definitions update the session locals;\n"

0 commit comments

Comments
 (0)