Browse Source

Fixed MP syn test python runtime error, with python 3.5 refusing to iterate over mutating dictionary keys

PYADPT-55
Edouard Tisserant 8 years ago
parent
commit
4c3da0373b
  1. 2
      test/multipEp.py

2
test/multipEp.py

@ -391,7 +391,7 @@ def stop_instance(iname):
def purge_instances(): def purge_instances():
global instances global instances
for iname in instances.keys(): for iname in list(instances.keys()):
stop_instance(iname) stop_instance(iname)
def run_instance_action(action): def run_instance_action(action):

Loading…
Cancel
Save