@@ -467,7 +467,7 @@ def view_patch():
467
467
468
468
@app .route ("/delete" , methods = ("DELETE" ,))
469
469
def view_delete ():
470
- """" The request's DELETE parameters.
470
+ """The request's DELETE parameters.
471
471
---
472
472
tags:
473
473
- HTTP Methods
@@ -503,7 +503,7 @@ def view_gzip_encoded_content():
503
503
@app .route ("/deflate" )
504
504
@filters .deflate
505
505
def view_deflate_encoded_content ():
506
- """" Returns Deflate-encoded data.
506
+ """Returns Deflate-encoded data.
507
507
---
508
508
tags:
509
509
- Response formats
@@ -520,7 +520,7 @@ def view_deflate_encoded_content():
520
520
@app .route ("/brotli" )
521
521
@filters .brotli
522
522
def view_brotli_encoded_content ():
523
- """" Returns Brotli-encoded data.
523
+ """Returns Brotli-encoded data.
524
524
---
525
525
tags:
526
526
- Response formats
@@ -971,7 +971,7 @@ def basic_auth(user="user", passwd="passwd"):
971
971
972
972
@app .route ("/hidden-basic-auth/<user>/<passwd>" )
973
973
def hidden_basic_auth (user = "user" , passwd = "passwd" ):
974
- """" Prompts the user for authorization using HTTP Basic Auth.
974
+ """Prompts the user for authorization using HTTP Basic Auth.
975
975
---
976
976
tags:
977
977
- Auth
@@ -998,7 +998,7 @@ def hidden_basic_auth(user="user", passwd="passwd"):
998
998
999
999
@app .route ("/bearer" )
1000
1000
def bearer_auth ():
1001
- """" Prompts the user for authorization using bearer authentication..
1001
+ """Prompts the user for authorization using bearer authentication..
1002
1002
---
1003
1003
tags:
1004
1004
- Auth
@@ -1029,7 +1029,7 @@ def bearer_auth():
1029
1029
1030
1030
@app .route ("/digest-auth/<qop>/<user>/<passwd>" )
1031
1031
def digest_auth_md5 (qop = None , user = "user" , passwd = "passwd" ):
1032
- """" Prompts the user for authorization using Digest Auth.
1032
+ """Prompts the user for authorization using Digest Auth.
1033
1033
---
1034
1034
tags:
1035
1035
- Auth
@@ -1057,7 +1057,7 @@ def digest_auth_md5(qop=None, user="user", passwd="passwd"):
1057
1057
1058
1058
@app .route ("/digest-auth/<qop>/<user>/<passwd>/<algorithm>" )
1059
1059
def digest_auth_nostale (qop = None , user = "user" , passwd = "passwd" , algorithm = "MD5" ):
1060
- """" Prompts the user for authorization using Digest Auth + Algorithm.
1060
+ """Prompts the user for authorization using Digest Auth + Algorithm.
1061
1061
---
1062
1062
tags:
1063
1063
- Auth
@@ -1092,7 +1092,7 @@ def digest_auth_nostale(qop=None, user="user", passwd="passwd", algorithm="MD5")
1092
1092
def digest_auth (
1093
1093
qop = None , user = "user" , passwd = "passwd" , algorithm = "MD5" , stale_after = "never"
1094
1094
):
1095
- """" Prompts the user for authorization using Digest Auth + Algorithm.
1095
+ """Prompts the user for authorization using Digest Auth + Algorithm.
1096
1096
allow settings the stale_after argument.
1097
1097
---
1098
1098
tags:
@@ -1194,7 +1194,7 @@ def digest_auth(
1194
1194
1195
1195
@app .route ("/delay/<delay>" , methods = ["GET" , "POST" , "PUT" , "DELETE" , "PATCH" , "TRACE" ])
1196
1196
def delay_response (delay ):
1197
- """" Returns a delayed response (max of 10 seconds).
1197
+ """Returns a delayed response (max of 10 seconds).
1198
1198
---
1199
1199
tags:
1200
1200
- Dynamic data
@@ -1289,7 +1289,7 @@ def generate_bytes():
1289
1289
1290
1290
@app .route ("/base64/<value>" )
1291
1291
def decode_base64 (value ):
1292
- """" Decodes base64url-encoded string.
1292
+ """Decodes base64url-encoded string.
1293
1293
---
1294
1294
tags:
1295
1295
- Dynamic data
0 commit comments