You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PATH_INFO
The remainder of the request URL's "path", designating the virtual "location" of the request's target within the application. This may be an empty string, if the request URL targets the application root and does not have a trailing slash.
I think the testcase collides with test_get_environment_path_empty.
But I think this test case is invalid, as a request with an empty path would
not be valid HTTP.
The text was updated successfully, but these errors were encountered:
If the origin request path is exactly the same as the
url_prefix
theresulting
PATH_INFO
equals theSCRIPT_NAME
whereas it should be the empty string.Example:
PEP-333, the WSGI-specification says this:
Testcase:
I think the testcase collides with
test_get_environment_path_empty
.But I think this test case is invalid, as a request with an empty path would
not be valid HTTP.
The text was updated successfully, but these errors were encountered: