Go to file
Luong Anh Tuan 831103935b Remove xrange for run both Python 2 and Python 3
In python 3, range() does what xrange() used to do and xrange() does not
exist. If you want to write code that will run on both Python 2 and
Python 3, you can't use xrange().

range() can actually be faster in some cases - eg. if iterating over the
same sequence multiple times. xrange() has to reconstruct the integer
object every time, but range() will have real integer objects.
(It will always perform worse in terms of memory however)

xrange() isn't usable in all cases where a real list is needed.
For instance, it doesn't support slices, or any list methods.

Change-Id: I033289359882c08185d59d13fa0b994c4566185a
2016-10-12 12:39:30 +07:00
2016-08-12 08:04:17 -05:00
2016-08-12 08:04:17 -05:00
2016-02-29 15:20:34 -06:00
2016-01-25 18:07:53 -06:00
2016-09-28 12:04:13 +01:00
2016-09-23 15:46:54 +00:00
2016-01-27 10:31:29 -06:00
2016-02-01 16:47:07 +00:00
2016-09-28 12:04:13 +01:00
2016-08-12 08:04:17 -05:00
2016-07-15 03:58:17 +00:00
2016-10-05 11:19:58 +00:00

OpenStack-Ansible plugins

These are the plugins the OpenStack-Ansible deployment project relies on. The plugins can be added to any Ansible project by simply cloning this repository and setting up the ansible.cfg file to point at them as additional plugins for your project.

Description
Plugins for OpenStack-Ansible
Readme 7.1 MiB
Languages
Python 86.5%
Jinja 13.2%
Shell 0.3%