From 4c3da0373babc59256bbb7e2a350e19f67d4c655 Mon Sep 17 00:00:00 2001 From: Edouard Tisserant Date: Tue, 7 Mar 2017 18:22:26 +0100 Subject: [PATCH] Fixed MP syn test python runtime error, with python 3.5 refusing to iterate over mutating dictionary keys --- test/multipEp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/multipEp.py b/test/multipEp.py index 8ab1dcf..1d54c87 100644 --- a/test/multipEp.py +++ b/test/multipEp.py @@ -391,7 +391,7 @@ def stop_instance(iname): def purge_instances(): global instances - for iname in instances.keys(): + for iname in list(instances.keys()): stop_instance(iname) def run_instance_action(action):