Add link comment to PEP 3333

This commit is contained in:
c-bata
2020-10-27 02:33:42 +09:00
parent 90997224aa
commit 83f268bdcd
+2
View File
@@ -21,6 +21,8 @@ def create_wsgi_env(
# 'key1=value1&key2=value2'
query_string = "&".join([f"{k}={v}" for k, v in queries.items()]) if queries else ""
# See https://www.python.org/dev/peps/pep-3333/#environ-variables
env = {
"PATH_INFO": path,
"REQUEST_METHOD": request_method,