[Python-modules-commits] [python-oauthlib] 03/05: record new upstream branch created by importing python-oauthlib_2.0.4.orig.tar.gz and merge it
Daniele Tricoli
eriol-guest at moszumanska.debian.org
Mon Sep 25 22:36:36 UTC 2017
This is an automated email from the git hooks/post-receive script.
eriol-guest pushed a commit to branch master
in repository python-oauthlib.
commit e42021d53589a74f57654e43168d8bc73abe09ce
Merge: bea55fc eea9b6c
Author: Daniele Tricoli <eriol at mornie.org>
Date: Mon Sep 25 23:43:59 2017 +0200
record new upstream branch created by importing python-oauthlib_2.0.4.orig.tar.gz and merge it
CHANGELOG.rst | 25 +++-
PKG-INFO | 10 +-
README.rst | 4 +-
debian/.git-dpm | 14 +-
oauthlib/__init__.py | 2 +-
oauthlib/common.py | 5 +
oauthlib/oauth1/__init__.py | 2 +-
oauthlib/oauth1/rfc5849/__init__.py | 2 +-
oauthlib/oauth1/rfc5849/endpoints/access_token.py | 2 +-
oauthlib/oauth1/rfc5849/endpoints/authorization.py | 3 +-
oauthlib/oauth1/rfc5849/endpoints/base.py | 9 +-
.../oauth1/rfc5849/endpoints/pre_configured.py | 4 +-
oauthlib/oauth1/rfc5849/endpoints/request_token.py | 2 +-
oauthlib/oauth1/rfc5849/endpoints/resource.py | 2 +-
.../oauth1/rfc5849/endpoints/signature_only.py | 11 +-
oauthlib/oauth1/rfc5849/errors.py | 2 +-
oauthlib/oauth1/rfc5849/parameters.py | 6 +-
oauthlib/oauth1/rfc5849/request_validator.py | 58 ++++----
oauthlib/oauth1/rfc5849/signature.py | 28 +++-
oauthlib/oauth1/rfc5849/utils.py | 5 +-
oauthlib/oauth2/__init__.py | 2 +-
oauthlib/oauth2/rfc6749/clients/__init__.py | 2 +-
.../oauth2/rfc6749/clients/backend_application.py | 3 +-
oauthlib/oauth2/rfc6749/clients/base.py | 12 +-
.../oauth2/rfc6749/clients/legacy_application.py | 3 +-
.../oauth2/rfc6749/clients/mobile_application.py | 3 +-
.../oauth2/rfc6749/clients/service_application.py | 3 +-
oauthlib/oauth2/rfc6749/clients/web_application.py | 6 +-
oauthlib/oauth2/rfc6749/endpoints/authorization.py | 1 +
oauthlib/oauth2/rfc6749/endpoints/base.py | 4 +-
.../oauth2/rfc6749/endpoints/pre_configured.py | 18 +--
oauthlib/oauth2/rfc6749/endpoints/revocation.py | 8 +-
oauthlib/oauth2/rfc6749/endpoints/token.py | 1 -
oauthlib/oauth2/rfc6749/errors.py | 147 ++++++++++++++++-----
.../rfc6749/grant_types/authorization_code.py | 11 +-
oauthlib/oauth2/rfc6749/grant_types/base.py | 5 +-
.../rfc6749/grant_types/client_credentials.py | 4 +-
oauthlib/oauth2/rfc6749/grant_types/implicit.py | 4 +-
.../oauth2/rfc6749/grant_types/openid_connect.py | 44 +++---
.../oauth2/rfc6749/grant_types/refresh_token.py | 4 +-
.../resource_owner_password_credentials.py | 4 +-
oauthlib/oauth2/rfc6749/parameters.py | 17 ++-
oauthlib/oauth2/rfc6749/request_validator.py | 2 +-
oauthlib/oauth2/rfc6749/tokens.py | 11 +-
oauthlib/oauth2/rfc6749/utils.py | 6 +-
oauthlib/uri_validate.py | 1 +
setup.cfg | 3 +
setup.py | 9 +-
.../oauth1/rfc5849/endpoints/test_access_token.py | 10 +-
.../oauth1/rfc5849/endpoints/test_authorization.py | 5 +-
tests/oauth1/rfc5849/endpoints/test_base.py | 14 +-
.../oauth1/rfc5849/endpoints/test_request_token.py | 9 +-
tests/oauth1/rfc5849/endpoints/test_resource.py | 9 +-
.../rfc5849/endpoints/test_signature_only.py | 9 +-
tests/oauth1/rfc5849/test_client.py | 7 +-
tests/oauth1/rfc5849/test_parameters.py | 8 +-
tests/oauth1/rfc5849/test_request_validator.py | 3 +-
tests/oauth1/rfc5849/test_signatures.py | 58 ++++----
tests/oauth1/rfc5849/test_utils.py | 4 +-
.../rfc6749/clients/test_backend_application.py | 2 +-
tests/oauth2/rfc6749/clients/test_base.py | 9 +-
.../rfc6749/clients/test_service_application.py | 1 -
.../oauth2/rfc6749/clients/test_web_application.py | 12 +-
.../oauth2/rfc6749/endpoints/test_base_endpoint.py | 9 +-
.../rfc6749/endpoints/test_claims_handling.py | 8 +-
.../endpoints/test_client_authentication.py | 12 +-
.../endpoints/test_credentials_preservation.py | 14 +-
.../rfc6749/endpoints/test_error_responses.py | 14 +-
.../rfc6749/endpoints/test_extra_credentials.py | 9 +-
.../rfc6749/endpoints/test_prompt_handling.py | 33 ++++-
.../endpoints/test_resource_owner_association.py | 12 +-
.../rfc6749/endpoints/test_revocation_endpoint.py | 39 ++++--
.../rfc6749/endpoints/test_scope_handling.py | 12 +-
.../rfc6749/grant_types/test_authorization_code.py | 10 +-
.../rfc6749/grant_types/test_client_credentials.py | 5 +-
tests/oauth2/rfc6749/grant_types/test_implicit.py | 3 +-
.../rfc6749/grant_types/test_openid_connect.py | 26 ++--
.../rfc6749/grant_types/test_refresh_token.py | 7 +-
.../grant_types/test_resource_owner_password.py | 10 +-
tests/oauth2/rfc6749/test_parameters.py | 10 +-
tests/oauth2/rfc6749/test_request_validator.py | 4 +-
tests/oauth2/rfc6749/test_server.py | 24 ++--
tests/oauth2/rfc6749/test_tokens.py | 4 +-
tests/oauth2/rfc6749/test_utils.py | 14 +-
tests/test_common.py | 23 ++--
85 files changed, 624 insertions(+), 372 deletions(-)
diff --cc debian/.git-dpm
index 450ef0e,0000000..ef54720
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
+# see git-dpm(1) from git-dpm package
- 8d11e88b0966087eda4d28ab855641016c58f635
- 8d11e88b0966087eda4d28ab855641016c58f635
- 8d11e88b0966087eda4d28ab855641016c58f635
- 8d11e88b0966087eda4d28ab855641016c58f635
- python-oauthlib_2.0.2.orig.tar.gz
- e9d2d2dba4526cad5db3d6a18bf2ca168087efcf
- 125631
++eea9b6c44e2d62082d8f35b00a261b9adbd65b20
++eea9b6c44e2d62082d8f35b00a261b9adbd65b20
++eea9b6c44e2d62082d8f35b00a261b9adbd65b20
++eea9b6c44e2d62082d8f35b00a261b9adbd65b20
++python-oauthlib_2.0.4.orig.tar.gz
++26498e0ea794e2b2500233e3ced2ff60dc6ec6ca
++127426
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-oauthlib.git
More information about the Python-modules-commits
mailing list