
* On Python 3, encode/decode JSON to/from UTF-8 * Use byte strings for volume content * Replace dict.keys()[0] and dict.value()[0] with list(dict.items())[0]. Get the key and the value at once to ensure that they are consistent. On Python 3, items() returns an iterator: create a list to use the [0] operator. * SwiftBackupDriver: use a bytearray instead of a string because bytes += bytes is inefficient on Python 3, whereas str += str is optimized on Python 2. Replace also StringIO with BytesIO. * BytesIO has no more len attribute on Python 3: get the length of the content instead. * Replace buffer(bytearray(128)) with b'\0' * 128 to create a string of 128 zeroed bytes * Replace "rw" file mode with "w+" ("rw" raises an exception on Python 3). * tox.ini: add the following tests to Python 3.4 - cinder.tests.unit.test_backup_swift - cinder.tests.unit.test_backup_tsm Blueprint cinder-python3 Change-Id: I62d7ef8041847f31b5d06a92fa2edb65c6780497
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%