
* don't use hasttr() to check if a lazy SQLAlchemy is loaded or not: use the obj_attr_is_set() method instead. On Python 3, hasattr() pass through SQLAlchemy exceptions which is unexpected. * Replace a/b with a//b to use integer division, not float division. * Replace filter() with list-comprehension using an if. * Replace file() with open() and open /dev/null in binary mode (not text mode, so Unicode on Python 3). * test_volume require "import cinder.volume.targets.tgt" on Python 3 * Use a key function to sort a list of dictionaries. Dictionaries are no more comparable on Python 3. * tox.ini: add the following tests to Python 3.4. - cinder.tests.unit.keymgr.test_mock_key_mgr - cinder.tests.unit.test_volume Note: test_list_availability_zones_enabled_service() of test_volume was broken, the test checked that the result of .sort() is None... Blueprint cinder-python3 Change-Id: If1a26acc0138db9bda7fde1cb1f40093d9b3c494
CINDER
You have come across a storage service for an open cloud computing service. It has identified itself as Cinder. It was abstracted from the Nova project.
- Wiki: http://wiki.openstack.org/Cinder
- Developer docs: http://docs.openstack.org/developer/cinder
Getting Started
If you'd like to run from the master branch, you can clone the git repo:
git clone https://github.com/openstack/cinder.git
For developer information please see HACKING.rst
You can raise bugs here http://bugs.launchpad.net/cinder
Python client
Description
Languages
Python
99.7%
Smarty
0.3%