@@ -355,7 +355,7 @@ def view_user_agent():
355355 - application/json
356356 responses:
357357 200:
358- description: The request's User-Agent header..
358+ description: The request's User-Agent header.
359359 """
360360
361361 headers = get_headers ()
@@ -467,7 +467,7 @@ def view_patch():
467467
468468@app .route ("/delete" , methods = ("DELETE" ,))
469469def view_delete ():
470- """" The request's DELETE parameters.
470+ """The request's DELETE parameters.
471471 ---
472472 tags:
473473 - HTTP Methods
@@ -503,7 +503,7 @@ def view_gzip_encoded_content():
503503@app .route ("/deflate" )
504504@filters .deflate
505505def view_deflate_encoded_content ():
506- """" Returns Deflate-encoded data.
506+ """Returns Deflate-encoded data.
507507 ---
508508 tags:
509509 - Response formats
@@ -520,7 +520,7 @@ def view_deflate_encoded_content():
520520@app .route ("/brotli" )
521521@filters .brotli
522522def view_brotli_encoded_content ():
523- """" Returns Brotli-encoded data.
523+ """Returns Brotli-encoded data.
524524 ---
525525 tags:
526526 - Response formats
@@ -831,7 +831,7 @@ def view_cookies(hide_env=True):
831831 - application/json
832832 responses:
833833 200:
834- description: Set cookies..
834+ description: Set cookies.
835835 """
836836
837837 cookies = dict (request .cookies .items ())
@@ -971,7 +971,7 @@ def basic_auth(user="user", passwd="passwd"):
971971
972972@app .route ("/hidden-basic-auth/<user>/<passwd>" )
973973def 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.
975975 ---
976976 tags:
977977 - Auth
@@ -998,7 +998,7 @@ def hidden_basic_auth(user="user", passwd="passwd"):
998998
999999@app .route ("/bearer" )
10001000def bearer_auth ():
1001- """" Prompts the user for authorization using bearer authentication. .
1001+ """Prompts the user for authorization using bearer authentication.
10021002 ---
10031003 tags:
10041004 - Auth
@@ -1029,7 +1029,7 @@ def bearer_auth():
10291029
10301030@app .route ("/digest-auth/<qop>/<user>/<passwd>" )
10311031def 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.
10331033 ---
10341034 tags:
10351035 - Auth
@@ -1057,7 +1057,7 @@ def digest_auth_md5(qop=None, user="user", passwd="passwd"):
10571057
10581058@app .route ("/digest-auth/<qop>/<user>/<passwd>/<algorithm>" )
10591059def 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.
10611061 ---
10621062 tags:
10631063 - Auth
@@ -1092,7 +1092,7 @@ def digest_auth_nostale(qop=None, user="user", passwd="passwd", algorithm="MD5")
10921092def digest_auth (
10931093 qop = None , user = "user" , passwd = "passwd" , algorithm = "MD5" , stale_after = "never"
10941094):
1095- """" Prompts the user for authorization using Digest Auth + Algorithm.
1095+ """Prompts the user for authorization using Digest Auth + Algorithm.
10961096 allow settings the stale_after argument.
10971097 ---
10981098 tags:
@@ -1194,7 +1194,7 @@ def digest_auth(
11941194
11951195@app .route ("/delay/<delay>" , methods = ["GET" , "POST" , "PUT" , "DELETE" , "PATCH" , "TRACE" ])
11961196def delay_response (delay ):
1197- """" Returns a delayed response (max of 10 seconds).
1197+ """Returns a delayed response (max of 10 seconds).
11981198 ---
11991199 tags:
12001200 - Dynamic data
@@ -1289,7 +1289,7 @@ def generate_bytes():
12891289
12901290@app .route ("/base64/<value>" )
12911291def decode_base64 (value ):
1292- """" Decodes base64url-encoded string.
1292+ """Decodes base64url-encoded string.
12931293 ---
12941294 tags:
12951295 - Dynamic data
0 commit comments