diff options
author | Asif Saif Uddin <auvipy@gmail.com> | 2020-05-12 20:02:01 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 20:02:01 +0600 |
commit | 0404b486b11b81de780234b944179fa7bde6f2b7 (patch) | |
tree | 5e66ce0291c78f3d80a054bb7bdf8f0b86e9c33d /oauthlib/oauth1/rfc5849 | |
parent | 46647402896db5f0d979eba9594623e889739060 (diff) | |
download | oauthlib-0404b486b11b81de780234b944179fa7bde6f2b7.tar.gz |
Remove Python 2 codes (#734)
* Update setup.py
* remove un needed python 2 codes
* remove un needed python 2 codes
* remove un needed python 2 codes
Diffstat (limited to 'oauthlib/oauth1/rfc5849')
-rw-r--r-- | oauthlib/oauth1/rfc5849/__init__.py | 1 | ||||
-rw-r--r-- | oauthlib/oauth1/rfc5849/errors.py | 1 | ||||
-rw-r--r-- | oauthlib/oauth1/rfc5849/parameters.py | 1 | ||||
-rw-r--r-- | oauthlib/oauth1/rfc5849/request_validator.py | 1 | ||||
-rw-r--r-- | oauthlib/oauth1/rfc5849/signature.py | 1 | ||||
-rw-r--r-- | oauthlib/oauth1/rfc5849/utils.py | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/oauthlib/oauth1/rfc5849/__init__.py b/oauthlib/oauth1/rfc5849/__init__.py index c639667..f7cd3f3 100644 --- a/oauthlib/oauth1/rfc5849/__init__.py +++ b/oauthlib/oauth1/rfc5849/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ oauthlib.oauth1.rfc5849 ~~~~~~~~~~~~~~ diff --git a/oauthlib/oauth1/rfc5849/errors.py b/oauthlib/oauth1/rfc5849/errors.py index 98d327f..8774d40 100644 --- a/oauthlib/oauth1/rfc5849/errors.py +++ b/oauthlib/oauth1/rfc5849/errors.py @@ -1,4 +1,3 @@ -# coding=utf-8 """ oauthlib.oauth1.rfc5849.errors ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/oauthlib/oauth1/rfc5849/parameters.py b/oauthlib/oauth1/rfc5849/parameters.py index a9fe23c..2163772 100644 --- a/oauthlib/oauth1/rfc5849/parameters.py +++ b/oauthlib/oauth1/rfc5849/parameters.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ oauthlib.parameters ~~~~~~~~~~~~~~~~~~~ diff --git a/oauthlib/oauth1/rfc5849/request_validator.py b/oauthlib/oauth1/rfc5849/request_validator.py index 750902f..dc5bf0e 100644 --- a/oauthlib/oauth1/rfc5849/request_validator.py +++ b/oauthlib/oauth1/rfc5849/request_validator.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ oauthlib.oauth1.rfc5849 ~~~~~~~~~~~~~~ diff --git a/oauthlib/oauth1/rfc5849/signature.py b/oauthlib/oauth1/rfc5849/signature.py index b11720e..0c22ef6 100644 --- a/oauthlib/oauth1/rfc5849/signature.py +++ b/oauthlib/oauth1/rfc5849/signature.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ oauthlib.oauth1.rfc5849.signature ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/oauthlib/oauth1/rfc5849/utils.py b/oauthlib/oauth1/rfc5849/utils.py index 4d22a3e..8fb8302 100644 --- a/oauthlib/oauth1/rfc5849/utils.py +++ b/oauthlib/oauth1/rfc5849/utils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ oauthlib.utils ~~~~~~~~~~~~~~ |