Merge "Correct docstrings"

This commit is contained in:
Jenkins 2015-10-07 01:21:26 +00:00 committed by Gerrit Code Review
commit 5ebd496288

View File

@ -488,7 +488,8 @@ class Provider(object):
:param token_data: token_data
:type token_data: dict
:returns: token version string
:raises: keystone.token.provider.UnsupportedTokenVersionException
:raises keystone.exception.UnsupportedTokenVersionException:
If the token version is not expected.
"""
raise exception.NotImplemented() # pragma: no cover
@ -546,7 +547,7 @@ class Provider(object):
:param token_ref: the token reference
:type token_ref: dict
:returns: token data
:raises: keystone.exception.TokenNotFound
:raises keystone.exception.TokenNotFound: If the token doesn't exist.
"""
raise exception.NotImplemented() # pragma: no cover
@ -558,7 +559,7 @@ class Provider(object):
:param token_ref: the token reference
:type token_ref: dict
:returns: token data
:raises: keystone.exception.TokenNotFound
:raises keystone.exception.TokenNotFound: If the token doesn't exist.
"""
raise exception.NotImplemented() # pragma: no cover