From b9957ef9690dc83c684e113294b068fe676b468a Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Fri, 22 Sep 2017 12:57:51 -0700 Subject: [PATCH] Remove unused function. --- debug/testlib.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/debug/testlib.py b/debug/testlib.py index 996c188..0bdb433 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -50,15 +50,6 @@ def compile(args, xlen=32): # pylint: disable=redefined-builtin header("") raise Exception("Compile failed!") -def unused_port(): - # http://stackoverflow.com/questions/2838244/get-open-tcp-port-in-python/2838309#2838309 - import socket - s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - s.bind(("", 0)) - port = s.getsockname()[1] - s.close() - return port - class Spike(object): logname = "spike-%d.log" % os.getpid() -- 2.30.2