summaryrefslogtreecommitdiff
path: root/django/test
diff options
context:
space:
mode:
authorMike Edmunds <medmunds@gmail.com>2025-07-22 20:40:48 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-23 20:17:55 -0300
commit55b0cc21310b76ce4018dd793ba50556eaf0af06 (patch)
treeb56d75363688b6ac34f7e9a773c793d79750104b /django/test
parent5527df91921b54b9fd1eb9aca3aabe91ec58a9c7 (diff)
Refs #36500 -- Shortened some long docstrings and comments.
Manually reformatted some long docstrings and comments that would be damaged by the to-be-applied autofixer script, in cases where editorial judgment seemed necessary for style or wording changes.
Diffstat (limited to 'django/test')
-rw-r--r--django/test/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/client.py b/django/test/client.py
index fe4cb8f9d7..301399c9ce 100644
--- a/django/test/client.py
+++ b/django/test/client.py
@@ -664,7 +664,7 @@ class RequestFactory:
if query_params:
extra["QUERY_STRING"] = urlencode(query_params, doseq=True)
r.update(extra)
- # If QUERY_STRING is absent or empty, we want to extract it from the URL.
+ # If QUERY_STRING is absent or empty, extract it from the URL.
if not r.get("QUERY_STRING"):
# WSGI requires latin-1 encoded strings. See get_path_info().
r["QUERY_STRING"] = parsed.query.encode().decode("iso-8859-1")