Replace dict.itervalues() with dict.values()

1.As mentioned in [1], we should avoid using six.itervalues
  to achieve iterators. We can use dict.values instead,
  as it will return iterators in PY3 as well.
  And dict.values will more readable.
2.In py2, the performance about list should be negligible,
  see the link [2].

[1] https://wiki.openstack.org/wiki/Python3#Common_patterns
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I27d3b04df19b964fe83e30ee383fcc1399dae3c3
This commit is contained in:
yanghuichan 2017-08-04 15:25:51 +08:00
parent c1cff1f544
commit b8e483bb60
2 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ for instance in conn.compute.servers():
# step-13
print('Checking if Floating IP is already assigned to testing_instance...')
testing_instance_floating_ip = None
for values in testing_instance.addresses.itervalues():
for values in testing_instance.addresses.values():
for address in values:
if address['OS-EXT-IPS:type'] == 'floating':
testing_instance_floating_ip = conn.network.find_ip(address['addr'])

View File

@ -165,7 +165,7 @@ instance_controller_1 = conn.compute.get_server(instance_controller_1)
print('Application will be deployed to http://%s' % controller_instance_floating_ip.floating_ip_address)
# step-12
for values in instance_controller_1.addresses.itervalues():
for values in instance_controller_1.addresses.values():
for address in values:
if address['OS-EXT-IPS:type'] == 'fixed':
ip_controller = address['addr']
@ -217,7 +217,7 @@ instance_worker_1 = conn.compute.get_server(instance_worker_1)
print('The worker will be available for SSH at %s' % worker_instance_floating_ip.floating_ip_address)
# step-13
for values in instance_worker_1.addresses.itervalues():
for values in instance_worker_1.addresses.values():
for address in values:
if address['OS-EXT-IPS:type'] == 'floating':
ip_instance_worker_1 = address['addr']