85590e653a
There are two things being fixed here: - In py3 a class is unhashable if it defines an __eq__, but doesn't define a __hash__. testtools.TestCase does this so adding the TestCase's methods into the set of methods to be called fails. The fake Manager class was created to bypass the issue since objects are hashable by default. - In py3 unbound methods are no longer a special object. They are treated the same an any other function object (note I don't mean instance methods). Because of this the TypeError is no longer raised when calling an unbound method without a class instance. To catch the same error in py3 we can get rid of the *args and spell out the arguments. This way when the method is called it will get a TypeError, since not all of the arguments will be passed in (no self, because it's not being called with an instance). An unused callback method was also removed. bp python3 Change-Id: I1d51a47614cdb8dd348c171e6fce644b3b4eec37 |
||
---|---|---|
config-generator | ||
doc | ||
etc | ||
examples/pki | ||
httpd | ||
keystone | ||
rally-jobs | ||
releasenotes | ||
tools | ||
.coveragerc | ||
.gitignore | ||
.gitreview | ||
.mailmap | ||
.testr.conf | ||
babel.cfg | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
MANIFEST.in | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tests-py3-blacklist.txt | ||
tox.ini |
OpenStack Keystone
Keystone provides authentication, authorization and service discovery mechanisms via HTTP primarily for use by projects in the OpenStack family. It is most commonly deployed as an HTTP interface to existing identity systems, such as LDAP.
Developer documentation, the source of which is in
doc/source/
, is published at:
The API specification and documentation are available at:
The canonical client library is available at:
https://git.openstack.org/cgit/openstack/python-keystoneclient
Documentation for cloud administrators is available at:
The source of documentation for cloud administrators is available at:
Information about our team meeting is available at:
Bugs and feature requests are tracked on Launchpad at:
Future design work is tracked at:
http://specs.openstack.org/openstack/keystone-specs/#identity-program-specifications
Contributors are encouraged to join IRC
(#openstack-keystone
on freenode):
For information on contributing to Keystone, see
CONTRIBUTING.rst
.