archrelease: copy trunk to community-any
[ArchLinux/community.git] / python-flask-jwt / trunk / pyjwt-2.0.0.patch
blobe4a66ea6214fbbdbb5a999b1724fd5e2a82dc3ee
1 diff -upr flask-jwt-0.3.2.orig/flask_jwt/__init__.py flask-jwt-0.3.2/flask_jwt/__init__.py
2 --- flask-jwt-0.3.2.orig/flask_jwt/__init__.py 2015-11-03 16:41:38.000000000 +0200
3 +++ flask-jwt-0.3.2/flask_jwt/__init__.py 2021-12-06 23:38:24.755653892 +0200
4 @@ -129,7 +129,7 @@ def _default_auth_request_handler():
7 def _default_auth_response_handler(access_token, identity):
8 - return jsonify({'access_token': access_token.decode('utf-8')})
9 + return jsonify({'access_token': access_token})
12 def _default_jwt_error_handler(error):
13 diff -upr flask-jwt-0.3.2.orig/tests/test_jwt.py flask-jwt-0.3.2/tests/test_jwt.py
14 --- flask-jwt-0.3.2.orig/tests/test_jwt.py 2015-11-03 16:41:38.000000000 +0200
15 +++ flask-jwt-0.3.2/tests/test_jwt.py 2021-12-06 23:38:31.295817131 +0200
16 @@ -193,7 +193,7 @@ def test_custom_error_handler(client, jw
17 def test_custom_response_handler(client, jwt, user):
18 @jwt.auth_response_handler
19 def resp_handler(access_token, identity):
20 - return jsonify({'mytoken': access_token.decode('utf-8')})
21 + return jsonify({'mytoken': access_token})
23 resp, jdata = post_json(
24 client, '/auth', {'username': user.username, 'password': user.password})